Skip to content

Commit

Permalink
Executables not being added in gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
winton committed Jan 21, 2011
1 parent b1e78b3 commit c396762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gem_template.gemspec
Expand Up @@ -25,7 +25,7 @@ Gem::Specification.new do |s|
s.add_development_dependency g.to_s, GemTemplate::Gems.versions[g] s.add_development_dependency g.to_s, GemTemplate::Gems.versions[g]
end end


s.executables = `cd #{root} && git ls-files -- {bin}/*`.split("\n").collect { |f| File.basename(f) } 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")
s.require_paths = %w(lib) 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")
Expand Down

0 comments on commit c396762

Please sign in to comment.