Skip to content

Commit

Permalink
stop using git ls-files in a gemspec
Browse files Browse the repository at this point in the history
fixes #278
  • Loading branch information
shime committed Feb 28, 2014
1 parent a0dced2 commit 5fa5f0c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions ruhoh.gemspec
Expand Up @@ -24,8 +24,6 @@ Gem::Specification.new do |s|
s.add_development_dependency 'capybara'
s.add_development_dependency 'rspec-expectations'

s.files = `git ls-files`.
split("\n").
sort.
reject { |file| file =~ /^(\.|rdoc|pkg|coverage)/ }
s.files = Dir.glob('{system,lib,bin}/**/*') +
%w[README.md history.json]
end

0 comments on commit 5fa5f0c

Please sign in to comment.