Navigation Menu

Skip to content

Commit

Permalink
remove require and rake altogether
Browse files Browse the repository at this point in the history
gem build and rake gem both work fine without those requires,
and requiring 'rake' broke bundler
  • Loading branch information
timon committed May 7, 2012
1 parent 94cc166 commit 4dcfb3b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions spreadsheet.gemspec
@@ -1,6 +1,3 @@
require "rubygems"
require "rake"

spec = Gem::Specification.new do |s|
s.name = "spreadsheet"
s.version = "0.7.0"
Expand All @@ -13,13 +10,6 @@ spec = Gem::Specification.new do |s|
s.test_file = "test/suite.rb"
s.executables << 'xlsopcodes'
s.add_dependency('ruby-ole')
s.add_development_dependency('rake')
s.homepage = "http://scm.ywesee.com/?p=spreadsheet/.git;a=summary"
end

if $0 == __FILE__
Gem.manage_gems
Gem::Builder.new(spec).build
else
spec
end

0 comments on commit 4dcfb3b

Please sign in to comment.