|
4 | 4 | Gem::Specification.new do |s|
|
5 | 5 | s.name = "puppetmodule-stdlib"
|
6 | 6 |
|
7 |
| - s.version = "4.0.1" |
| 7 | + s.version = "4.0.2" |
8 | 8 |
|
9 | 9 | s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
10 | 10 | s.authors = ["Puppet Labs"]
|
11 |
| - s.date = "2013-04-10" |
12 |
| - s.description = "Puppet Labs Standard Library module" |
13 |
| - |
| 11 | + s.date = "2013-04-12" |
| 12 | + s.description = [ 'This Gem format of the stdlib module is intended to make', |
| 13 | + 'it easier for _module authors_ to resolve dependencies', |
| 14 | + 'using a Gemfile when running automated testing jobs like', |
| 15 | + 'Travis or Jenkins. The recommended best practice for', |
| 16 | + 'installation by end users is to use the `puppet module', |
| 17 | + 'install` command to install stdlib from the [Puppet', |
| 18 | + 'Forge](http://forge.puppetlabs.com/puppetlabs/stdlib).' ].join(' ') |
| 19 | + |
14 | 20 | s.executables = []
|
15 | 21 | s.files = [ 'CHANGELOG', 'CONTRIBUTING.md', 'Gemfile', 'LICENSE', 'Modulefile',
|
16 | 22 | 'README.markdown', 'README_DEVELOPER.markdown', 'RELEASE_PROCESS.markdown',
|
17 | 23 | 'Rakefile', 'spec/spec.opts' ]
|
18 | 24 | s.files += Dir['lib/**/*.rb'] + Dir['manifests/**/*.pp'] + Dir['tests/**/*.pp'] + Dir['spec/**/*.rb']
|
19 |
| - s.homepage = "https://github.com/puppetlabs/puppetlabs-stdlib" |
20 |
| - s.rdoc_options = ["--title", "Puppet Standard Library Module", "--main", "README.markdown", "--line-numbers"] |
| 25 | + s.homepage = "http://forge.puppetlabs.com/puppetlabs/stdlib" |
| 26 | + s.rdoc_options = ["--title", "Puppet Standard Library Development Gem", "--main", "README.markdown", "--line-numbers"] |
21 | 27 | s.require_paths = ["lib"]
|
22 | 28 | s.rubyforge_project = "puppetmodule-stdlib"
|
23 | 29 | s.rubygems_version = "1.8.24"
|
24 |
| - s.summary = "This module provides a standard library of resources for developing Puppet Modules." |
| 30 | + s.summary = "This gem provides a way to make the standard library available for other module spec testing tasks." |
25 | 31 |
|
26 | 32 | if s.respond_to? :specification_version then
|
27 | 33 | s.specification_version = 3
|
|
0 commit comments