Skip to content

Commit

Permalink
Fix gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
wycats committed Aug 17, 2010
1 parent 27e941e commit 9af37bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asdf.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ Gem::Specification.new do |s|
s.add_development_dependency "bundler", ">= 1.0.0.rc.5"

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.executables = `git ls-files`.split("\n").map { |f| p f; f[%r{^bin/(.*)}, 1] }.compact
s.require_path = 'lib'
end

0 comments on commit 9af37bf

Please sign in to comment.