Skip to content

Commit

Permalink
Merge pull request pupeno#4 from derekprior/patch-1
Browse files Browse the repository at this point in the history
Don't use git in .gemspec
  • Loading branch information
pupeno committed Feb 13, 2012
2 parents b6de542 + d5942f8 commit 20c053e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions table_builder.gemspec
Expand Up @@ -13,9 +13,8 @@ Gem::Specification.new do |s|

s.rubyforge_project = "table_builder"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.files = Dir["{lib,test}/**/*", "[A-Z]*", "init.rb"] - ["Gemfile.lock"]
s.test_files = Dir["test/**/*"]
s.require_paths = ["lib"]

# specify any dependencies here; for example:
Expand Down

0 comments on commit 20c053e

Please sign in to comment.