summaryrefslogtreecommitdiff
path: root/psych.gemspec
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-26 18:36:11 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2020-02-26 18:37:20 +0100
commit32b18ca7ca3f763e9a13124ac1000df4d708a695 (patch)
tree3f1616211ae669425841e3aa00fb290e8de81f98 /psych.gemspec
parentbb8a35ef7e45654ce3e57c9154da014432a46d13 (diff)
downloadpsych-32b18ca7ca3f763e9a13124ac1000df4d708a695.tar.gz
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 ```
Diffstat (limited to 'psych.gemspec')
-rw-r--r--psych.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/psych.gemspec b/psych.gemspec
index e0168af..0990098 100644
--- a/psych.gemspec
+++ b/psych.gemspec
@@ -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",