Skip to content

Commit

Permalink
Merge pull request puppetlabs#24 from hunner/rakefile_update
Browse files Browse the repository at this point in the history
Fix warnings for rake
  • Loading branch information
ripienaar committed Dec 1, 2011
2 parents 30c4717 + 731f2ef commit 9d99b22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
@@ -1,5 +1,5 @@
require 'rubygems' require 'rubygems'
require 'rake/gempackagetask' require 'rubygems/package_task'
require 'rspec/core/rake_task' require 'rspec/core/rake_task'


spec = Gem::Specification.new do |s| spec = Gem::Specification.new do |s|
Expand All @@ -18,7 +18,7 @@ spec = Gem::Specification.new do |s|
s.default_executable = "hiera" s.default_executable = "hiera"
end end


Rake::GemPackageTask.new(spec) do |pkg| Gem::PackageTask.new(spec) do |pkg|
pkg.need_tar = true pkg.need_tar = true
end end


Expand Down

0 comments on commit 9d99b22

Please sign in to comment.