Skip to content

Commit

Permalink
Fixed a couple of typos in the Rakefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
djberg96 committed Feb 10, 2010
1 parent 984aef3 commit 23a6ac6
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Rakefile
Expand Up @@ -45,7 +45,7 @@ end
namespace 'gem' do
desc 'Build the gem'
task :build => [:clean] do
spec = evan(IO.read('win32-open3.gemspec'))
spec = eval(IO.read('win32-service.gemspec'))
Gem::Builder.new(spec).build
end

Expand All @@ -64,9 +64,7 @@ namespace 'gem' do
spec.extensions = nil
spec.platform = Gem::Platform::CURRENT

spec.files = spec.files.reject{ |f|
f.include?('ext') || f.include?('git')
}
spec.files = spec.files.reject{ |f| f.include?('ext') }

Gem::Builder.new(spec).build
end
Expand Down

0 comments on commit 23a6ac6

Please sign in to comment.