Skip to content

Commit ba63ca0

Browse files
committed
(maint) Keep it simple
Single quote dependency names and sort them for maintainability.
1 parent 4b86a88 commit ba63ca0

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

puppet.gemspec

+10-10
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ Gem::Specification.new do |spec|
2020
spec.require_paths = ["lib"]
2121
spec.summary = "Puppet, an automated configuration management tool"
2222
spec.specification_version = 4
23-
spec.add_runtime_dependency(%q<facter>, [">= 4.3.0", "< 5"])
24-
spec.add_runtime_dependency(%q<semantic_puppet>, "~> 1.0")
25-
spec.add_runtime_dependency(%q<fast_gettext>, ">= 2.1", "< 4")
26-
spec.add_runtime_dependency(%q<locale>, "~> 2.1")
27-
spec.add_runtime_dependency(%q<multi_json>, "~> 1.13")
28-
spec.add_runtime_dependency(%q<puppet-resource_api>, "~> 1.5")
29-
spec.add_runtime_dependency(%q<concurrent-ruby>, "~> 1.0")
30-
spec.add_runtime_dependency(%q<deep_merge>, "~> 1.0")
31-
spec.add_runtime_dependency(%q<scanf>, "~> 1.0")
32-
spec.add_runtime_dependency(%q<getoptlong>, "~> 0.2.0")
23+
spec.add_runtime_dependency('concurrent-ruby', '~> 1.0')
24+
spec.add_runtime_dependency('deep_merge', '~> 1.0')
25+
spec.add_runtime_dependency('facter', ['>= 4.3.0', '< 5'])
26+
spec.add_runtime_dependency('fast_gettext', '>= 2.1', '< 4')
27+
spec.add_runtime_dependency('getoptlong', '~> 0.2.0')
28+
spec.add_runtime_dependency('locale', '~> 2.1')
29+
spec.add_runtime_dependency('multi_json', '~> 1.13')
30+
spec.add_runtime_dependency('puppet-resource_api', '~> 1.5')
31+
spec.add_runtime_dependency('scanf', '~> 1.0')
32+
spec.add_runtime_dependency('semantic_puppet', '~> 1.0')
3333

3434
platform = spec.platform.to_s
3535
if platform == 'universal-darwin'

0 commit comments

Comments
 (0)