Skip to content

Commit

Permalink
Merge branch 'master' into rails
Browse files Browse the repository at this point in the history
  • Loading branch information
winton committed Jan 10, 2011
2 parents 395ada2 + 3cfaf47 commit e8e1fc3
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 e8e1fc3

Please sign in to comment.