Skip to content

Commit

Permalink
Fix s.executables expression
Browse files Browse the repository at this point in the history
It's not used in jquery-rails, but this way people copying from us will
have the right code.
  • Loading branch information
joliss committed Mar 4, 2012
1 parent 21af08e commit 2d78b94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jquery-rails.gemspec
Expand Up @@ -18,6 +18,6 @@ Gem::Specification.new do |s|
s.add_dependency "thor", "~> 0.14"

s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").select{|f| f =~ /^bin/}
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.require_path = 'lib'
end

0 comments on commit 2d78b94

Please sign in to comment.