Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Gems not getting any files (oops)
  • Loading branch information
winton committed Jan 10, 2011
1 parent 1b3ee7b commit 3cfaf47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gem_template.gemspec
Expand Up @@ -26,7 +26,7 @@ Gem::Specification.new do |s|
end

s.executables = `cd #{root} && git ls-files -- {bin}/*`.split("\n").collect { |f| File.basename(f) }
s.files = `cd #{root} && git ls-files`.split("\n")
s.files = `cd #{root} && git ls-files`.split("\n").collect { |f| "#{root}/#{f}" }
s.require_paths = %w(lib)
s.test_files = `cd #{root} && git ls-files -- {features,test,spec}/*`.split("\n")
s.test_files = `cd #{root} && git ls-files -- {features,test,spec}/*`.split("\n").collect { |f| "#{root}/#{f}" }
end

0 comments on commit 3cfaf47

Please sign in to comment.