Skip to content

Commit

Permalink
FIX gemspec did not include lib folder
Browse files Browse the repository at this point in the history
  • Loading branch information
burtlo committed Feb 12, 2012
1 parent cbb1501 commit fb4e69e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xcoder.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|

s.rubyforge_project = "xcoder"

s.files = `git ls-files`.split("\n").select {|f| !f=~/^examples\//} # Ignore example files
s.files = `git ls-files`.split("\n").reject {|f| f=~/^(?:spec|examples)\//} # Ignore example files
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.require_paths = ["lib"]
Expand Down

0 comments on commit fb4e69e

Please sign in to comment.