Skip to content

Commit 5ec86e9

Browse files
authored
Add rgen as a runtime dependency
When using puppet-strings with a module that otherwise does not specify rgen in its Gemfile, this error was observed: ``` $ bundle exec puppet strings generate ./manifests/*.pp Error: The 'rgen' gem must be installed in order to use this face. Error: Try 'puppet help strings generate' for usage ``` Adding rgen to the Gemfile allows puppet strings to work, so it seems like a valid runtime dependency.
1 parent 42285c7 commit 5ec86e9

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

puppet-strings.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ Gem::Specification.new do |s|
1919
s.files = `git ls-files`.split("\n") - Dir['.*', '*.gemspec']
2020

2121
s.add_runtime_dependency 'yard', '~> 0.9.5'
22+
s.add_runtime_dependency 'rgen'
2223
s.requirements << 'puppet, >= 3.7.0'
2324
end

0 commit comments

Comments
 (0)