mirror of
https://github.com/ruby/ruby.git
synced 2025-09-23 12:33:56 +02:00
[ruby/psych] Fix gem installation
Current version is not installable because the gemspec is invalid, since
it includes a `.travis.yml` file that no longer exists, so `rake
install` fails like this:
```
$ rake install
rake aborted!
WARNING: See https://guides.rubygems.org/specification-reference/ for help
ERROR: While executing gem ... (Gem::InvalidSpecificationException)
[".travis.yml"] are not files
```
32b18ca7ca
This commit is contained in:
parent
f641d78a6f
commit
5ed58b90d1
Notes:
git
2020-06-05 11:50:25 +09:00
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ DESCRIPTION
|
|||
|
||||
# for ruby core repository. It was generated by `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
||||
s.files = [
|
||||
".gitignore", ".travis.yml", "Gemfile", "Mavenfile", "README.md", "Rakefile", "bin/console",
|
||||
".gitignore", "Gemfile", "Mavenfile", "README.md", "Rakefile", "bin/console",
|
||||
"bin/setup", "ext/psych/depend", "ext/psych/extconf.rb", "ext/psych/psych.c", "ext/psych/psych.h",
|
||||
"ext/psych/psych_emitter.c", "ext/psych/psych_emitter.h", "ext/psych/psych_parser.c", "ext/psych/psych_parser.h",
|
||||
"ext/psych/psych_to_ruby.c", "ext/psych/psych_to_ruby.h", "ext/psych/psych_yaml_tree.c", "ext/psych/psych_yaml_tree.h",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue