File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 10
10
# Please see the [packaging
11
11
# repository](https://github.com/puppetlabs/packaging) for information on how
12
12
# to build the Puppet gem package.
13
+ #
14
+ # Make sure these gem requirements are in sync with ext/project_data.yaml and
15
+ # the Gemfile
13
16
14
17
Gem ::Specification . new do |s |
15
18
s . name = "puppet"
@@ -37,6 +40,7 @@ Gem::Specification.new do |s|
37
40
s . add_runtime_dependency ( %q<fast_gettext> , ">= 2.1" , "< 3" )
38
41
s . add_runtime_dependency ( %q<locale> , "~> 2.1" )
39
42
s . add_runtime_dependency ( %q<multi_json> , "~> 1.13" )
43
+ s . add_runtime_dependency ( %q<puppet-resource_api> , "~> 1.5" )
40
44
s . add_runtime_dependency ( %q<concurrent-ruby> , [ "~> 1.0" , "< 1.2.0" ] )
41
45
s . add_runtime_dependency ( %q<deep_merge> , "~> 1.0" )
42
46
s . add_runtime_dependency ( %q<scanf> , "~> 1.0" )
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ def location_for(place, fake_version = nil)
12
12
end
13
13
end
14
14
15
+ # Make sure these gem requirements are in sync with the gempspec and ext/project_data.yaml
16
+
15
17
gem "facter" , *location_for ( ENV [ 'FACTER_LOCATION' ] || [ "~> 4.3" ] )
16
18
gem "semantic_puppet" , *location_for ( ENV [ 'SEMANTIC_PUPPET_LOCATION' ] || [ "~> 1.0" ] )
17
19
gem "puppet-resource_api" , *location_for ( ENV [ 'RESOURCE_API_LOCATION' ] || [ "~> 1.5" ] )
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ description: 'Puppet, an automated configuration management tool'
8
8
version_file : ' lib/puppet/version.rb'
9
9
# files and gem_files are space separated lists
10
10
files : ' [A-Z]* install.rb bin lib conf man examples ext tasks spec locales'
11
- # The gem specification bits only work on Puppet >= 3.0rc, NOT 2.7.x and earlier
11
+ # Make sure these gem requirements are in sync with the gempspec and Gemfile
12
12
gem_files : ' [A-Z]* install.rb bin lib conf man examples ext tasks spec locales'
13
13
gem_test_files : ' spec/**/*'
14
14
gem_executables : ' puppet'
@@ -20,9 +20,9 @@ gem_required_rubygems_version: '> 1.3.1'
20
20
gem_runtime_dependencies :
21
21
facter : ['>= 4.3.0', '< 5']
22
22
semantic_puppet : ' ~> 1.0'
23
- fast_gettext : ['>= 1 .1', '< 3']
23
+ fast_gettext : ['>= 2 .1', '< 3']
24
24
locale : ' ~> 2.1'
25
- multi_json : ' ~> 1.10 '
25
+ multi_json : ' ~> 1.13 '
26
26
puppet-resource_api : ' ~>1.5'
27
27
concurrent-ruby : ["~> 1.0", "< 1.2.0"]
28
28
deep_merge : ' ~> 1.0'
You can’t perform that action at this time.
0 commit comments