Skip to content

Commit

Permalink
update rakefile to fix some deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jkraemer committed Nov 26, 2012
1 parent 872c82d commit 3fa336e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ruby/Rakefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require 'rake'
require 'rake/clean'
require 'rake/gempackagetask'
require 'rake/rdoctask'
require 'rubygems/package_task'
require 'rdoc/task'
require 'rake/testtask'

$:. << 'lib'
Expand Down Expand Up @@ -280,7 +280,7 @@ spec = Gem::Specification.new do |s|
end
end

package_task = Rake::GemPackageTask.new(spec) do |pkg|
package_task = Gem::PackageTask.new(spec) do |pkg|
unless windows
pkg.need_zip = true
pkg.need_tar = true
Expand Down

0 comments on commit 3fa336e

Please sign in to comment.