Skip to content

Commit

Permalink
(maint) Keep it simple
Browse files Browse the repository at this point in the history
Single quote dependency names and sort them for maintainability.
  • Loading branch information
joshcooper committed Jun 18, 2024
1 parent 4b86a88 commit ba63ca0
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions puppet.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ Gem::Specification.new do |spec|
spec.require_paths = ["lib"]
spec.summary = "Puppet, an automated configuration management tool"
spec.specification_version = 4
spec.add_runtime_dependency(%q<facter>, [">= 4.3.0", "< 5"])
spec.add_runtime_dependency(%q<semantic_puppet>, "~> 1.0")
spec.add_runtime_dependency(%q<fast_gettext>, ">= 2.1", "< 4")
spec.add_runtime_dependency(%q<locale>, "~> 2.1")
spec.add_runtime_dependency(%q<multi_json>, "~> 1.13")
spec.add_runtime_dependency(%q<puppet-resource_api>, "~> 1.5")
spec.add_runtime_dependency(%q<concurrent-ruby>, "~> 1.0")
spec.add_runtime_dependency(%q<deep_merge>, "~> 1.0")
spec.add_runtime_dependency(%q<scanf>, "~> 1.0")
spec.add_runtime_dependency(%q<getoptlong>, "~> 0.2.0")
spec.add_runtime_dependency('concurrent-ruby', '~> 1.0')
spec.add_runtime_dependency('deep_merge', '~> 1.0')
spec.add_runtime_dependency('facter', ['>= 4.3.0', '< 5'])
spec.add_runtime_dependency('fast_gettext', '>= 2.1', '< 4')
spec.add_runtime_dependency('getoptlong', '~> 0.2.0')
spec.add_runtime_dependency('locale', '~> 2.1')
spec.add_runtime_dependency('multi_json', '~> 1.13')
spec.add_runtime_dependency('puppet-resource_api', '~> 1.5')
spec.add_runtime_dependency('scanf', '~> 1.0')
spec.add_runtime_dependency('semantic_puppet', '~> 1.0')

platform = spec.platform.to_s
if platform == 'universal-darwin'
Expand Down

0 comments on commit ba63ca0

Please sign in to comment.