diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-10-12 01:15:34 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2024-10-12 01:16:20 +0000 |
commit | 10f244fc36babc24eca62277f1bc95b966c15373 (patch) | |
tree | b5978907d1e113a15620a764960a74e0f2131f20 /recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec | |
parent | 31ed0c88aa5dc841a96c7a16abd9cdc8ffb425fc (diff) | |
download | meta-cloud-services-10f244fc36babc24eca62277f1bc95b966c15373.tar.gz |
puppet-labs-stdlib: update to v9.6.0
We also update our gemspec file.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec')
-rw-r--r-- | recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec b/recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec new file mode 100644 index 0000000..46b2c9e --- /dev/null +++ b/recipes-support/puppetlabs-stdlib/files/puppetlabs-stdlib.gemspec | |||
@@ -0,0 +1,30 @@ | |||
1 | # | ||
2 | # -*- encoding: utf-8 -*- | ||
3 | |||
4 | Gem::Specification.new do |s| | ||
5 | s.name = "puppetmodule-stdlib" | ||
6 | |||
7 | s.version = "4.0.0" | ||
8 | |||
9 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= | ||
10 | s.authors = ["Puppet Labs"] | ||
11 | s.date = "2013-04-10" | ||
12 | s.description = "Puppet Labs Standard Library module" | ||
13 | s.email = "bruce.ashfield@gmail.com" | ||
14 | s.executables = [] | ||
15 | s.files += Dir['lib/**/*.rb'] + Dir['manifests/**/*.pp'] + Dir['tests/**/*.pp'] + Dir['spec/**/*.rb'] | ||
16 | s.homepage = "https://github.com/puppetlabs/puppetlabs-stdlib" | ||
17 | s.rdoc_options = ["--title", "Puppet Standard Library Module", "--main", "README.markdown", "--line-numbers"] | ||
18 | s.require_paths = ["lib"] | ||
19 | s.rubyforge_project = "puppetmodule-stdlib" | ||
20 | s.summary = "This module provides a standard library of resources for developing Puppet Modules." | ||
21 | |||
22 | if s.respond_to? :specification_version then | ||
23 | s.specification_version = 3 | ||
24 | |||
25 | if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then | ||
26 | else | ||
27 | end | ||
28 | else | ||
29 | end | ||
30 | end | ||