mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
use git ls-files instead of globbing ourselves
This commit is contained in:
parent
fad6cf9977
commit
164ff67332
1 changed files with 1 additions and 2 deletions
3
Rakefile
3
Rakefile
|
@ -26,8 +26,7 @@ def apply_spec_defaults(s)
|
|||
s.homepage = "http://banisterfiend.wordpress.com"
|
||||
s.has_rdoc = 'yard'
|
||||
s.executables = ["pry"]
|
||||
s.files = Dir["ext/**/extconf.rb", "ext/**/*.h", "ext/**/*.c", "lib/**/*", "examples/**/*.rb",
|
||||
"test/*.rb", "test/testrc", "CHANGELOG", "LICENSE", "README.markdown", "Rakefile", ".gemtest"]
|
||||
s.files = `git ls-files`.split("\n")
|
||||
end
|
||||
|
||||
task :test do
|
||||
|
|
Loading…
Reference in a new issue