Skip to content

Commit bebecd3

Browse files
author
Jeff McCune
committed
Merge branch 'update_gemspec' for 4.0.2
* update_gemspec: Update gemspec, Modulefile, CHANGELOG for 4.0.2 closes #145 [ci skip]
2 parents 85cf0e6 + 5e0b90e commit bebecd3

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

.gemspec

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,30 @@
44
Gem::Specification.new do |s|
55
s.name = "puppetmodule-stdlib"
66

7-
s.version = "4.0.1"
7+
s.version = "4.0.2"
88

99
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1010
s.authors = ["Puppet Labs"]
11-
s.date = "2013-04-10"
12-
s.description = "Puppet Labs Standard Library module"
13-
s.email = "[email protected]"
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+
s.email = "[email protected]"
1420
s.executables = []
1521
s.files = [ 'CHANGELOG', 'CONTRIBUTING.md', 'Gemfile', 'LICENSE', 'Modulefile',
1622
'README.markdown', 'README_DEVELOPER.markdown', 'RELEASE_PROCESS.markdown',
1723
'Rakefile', 'spec/spec.opts' ]
1824
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"]
2127
s.require_paths = ["lib"]
2228
s.rubyforge_project = "puppetmodule-stdlib"
2329
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."
2531

2632
if s.respond_to? :specification_version then
2733
s.specification_version = 3

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2013-04-12 - Jeff McCune <[email protected]> - 4.0.2
2+
* Update user information in gemspec to make the intent of the Gem clear.
3+
14
2013-04-11 - Jeff McCune <[email protected]> - 4.0.1
25
* Fix README function documentation (ab3e30c)
36

Modulefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name 'puppetlabs-stdlib'
2-
version '4.0.1'
2+
version '4.0.2'
33
source 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
44
author 'puppetlabs'
55
license 'Apache 2.0'

0 commit comments

Comments
 (0)