summaryrefslogtreecommitdiff
path: root/.gemspec
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2013-04-11 14:14:02 -0700
committerJeff McCune <jeff@puppetlabs.com>2013-04-11 14:14:02 -0700
commit475e29f69827c6e04c620955860617a30b523f4e (patch)
tree19211c67f915cdfd8452f38b42a6f823169a1a8d /.gemspec
parentddfafc4a856d32185ef2318cf58341852bf58b29 (diff)
Update gemspec for 4.0.0
Diffstat (limited to '.gemspec')
-rw-r--r--.gemspec9
1 files changed, 6 insertions, 3 deletions
diff --git a/.gemspec b/.gemspec
index 805e170..3e7f774 100644
--- a/.gemspec
+++ b/.gemspec
@@ -4,7 +4,7 @@
Gem::Specification.new do |s|
s.name = "puppetmodule-stdlib"
- s.version = "3.2.0"
+ s.version = "4.0.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Puppet Labs"]
@@ -12,11 +12,14 @@ Gem::Specification.new do |s|
s.description = "Puppet Labs Standard Library module"
s.email = "support@puppetlabs.com"
s.executables = []
- s.files = []
+ s.files = [ 'CHANGELOG', 'CONTRIBUTING.md', 'Gemfile', 'LICENSE', 'Modulefile',
+ 'README.markdown', 'README_DEVELOPER.markdown', 'RELEASE_PROCESS.markdown',
+ 'Rakefile', 'spec/spec.opts' ]
+ s.files += Dir['lib/**/*.rb'] + Dir['manifests/**/*.pp'] + Dir['tests/**/*.pp'] + Dir['spec/**/*.rb']
s.homepage = "https://github.com/puppetlabs/puppetlabs-stdlib"
s.rdoc_options = ["--title", "Puppet Standard Library Module", "--main", "README.markdown", "--line-numbers"]
s.require_paths = ["lib"]
- s.rubyforge_project = "puppetmodule_stdlib"
+ s.rubyforge_project = "puppetmodule-stdlib"
s.rubygems_version = "1.8.24"
s.summary = "This module provides a standard library of resources for developing Puppet Modules."