Skip to content

Commit e307a27

Browse files
authored
Merge pull request #98 from ekohl/add-base64-gem-dep
Add base64 and syslog as gem dependencies for Ruby 3.4
2 parents 6bf84d6 + 6fcc677 commit e307a27

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

puppet.gemspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,21 @@ Gem::Specification.new do |spec|
2020
spec.require_paths = ["lib"]
2121
spec.summary = "OpenVox, a community implementation of Puppet -- an automated configuration management tool"
2222
spec.specification_version = 4
23+
spec.add_runtime_dependency('base64', '>= 0.1', '< 0.3')
24+
spec.add_runtime_dependency('benchmark', '>= 0.3', '< 0.5')
2325
spec.add_runtime_dependency('concurrent-ruby', '~> 1.0')
2426
spec.add_runtime_dependency('deep_merge', '~> 1.0')
2527
spec.add_runtime_dependency('facter', ['>= 4.3.0', '< 5'])
2628
spec.add_runtime_dependency('fast_gettext', '>= 2.1', '< 4')
2729
spec.add_runtime_dependency('getoptlong', '~> 0.2.0')
2830
spec.add_runtime_dependency('locale', '~> 2.1')
2931
spec.add_runtime_dependency('multi_json', '~> 1.13')
32+
spec.add_runtime_dependency('ostruct', '~> 0.6.0')
3033
spec.add_runtime_dependency('puppet-resource_api', '~> 1.5')
34+
spec.add_runtime_dependency('racc', '~> 1.5')
3135
spec.add_runtime_dependency('scanf', '~> 1.0')
3236
spec.add_runtime_dependency('semantic_puppet', '~> 1.0')
33-
spec.add_runtime_dependency('ostruct', '~> 0.6.0')
34-
spec.add_runtime_dependency('benchmark', '>= 0.3', '< 0.5')
35-
spec.add_runtime_dependency('racc', '~> 1.5')
36-
37+
spec.add_runtime_dependency('syslog', '>= 0.1', '< 0.3')
3738

3839
platform = spec.platform.to_s
3940
if platform == 'universal-darwin'

0 commit comments

Comments
 (0)