summaryrefslogtreecommitdiff
path: root/psych.gemspec
AgeCommit message (Collapse)Author
2020-09-25Removed nonsense `rubygems_version` in input gemspec filesNobuyoshi Nakada
As it is ignored and set at building packages automatically, it is just nonsense to set in gemspec file for input.
2020-06-23Fixup 05d7e818a6abe3ee1c56b6be92f086647d73141cHiroshi SHIBATA
2020-06-08Avoid requiring "psych/versions"Yusuke Endoh
This leads to double requiring "ext/psych/lib/psych/versions.rb" and ".ext/common/psych/versions.rb", which produces doxens of warnings during `make test-all`. http://rubyci.s3.amazonaws.com/ubuntu2004/ruby-master/log/20200608T123004Z.log.html.gz ``` [15092/20234] TestRDocOptions#test_init_with_encoding/home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/ext/psych/lib/psych.rb:233: warning: already initialized constant Psych::LIBYAML_VERSION /home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/.ext/common/psych.rb:233: warning: previous definition of LIBYAML_VERSION was here /home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/ext/psych/lib/psych.rb:235: warning: already initialized constant Psych::NOT_GIVEN /home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/.ext/common/psych.rb:235: warning: previous definition of NOT_GIVEN was here /home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/ext/psych/lib/psych.rb:271: warning: method redefined; discarding old load /home/chkbuild/chkbuild/tmp/build/20200608T123004Z/ruby/.ext/common/psych.rb:271: warning: previous definition of load was here ... ``` The same issue happened in fiddle.gemspec, and this change applies the same fix as [fiddle](https://github.com/ruby/fiddle/issues/34).
2020-05-07Merge pull request #433 from ↵Aaron Patterson
deivid-rodriguez/remove_unnecessary_check_on_version Remove unnecessary check on version
2020-04-06Add LICENSE to the gemPo-Chuan Hsieh
2020-03-17Remove unnecessary version guard from versions.rbDavid Rodríguez
Removing it triggers the following warnings when running `bundle` under jruby from the root of the `psych` repo prints the following warnings: ``` /path/to/jruby-9.2.9.0/lib/ruby/gems/shared/gems/psych-3.1.0-java/lib/psych/versions.rb:7: warning: already initialized constant VERSION /path/to//jruby-9.2.9.0/lib/ruby/gems/shared/gems/psych-3.1.0-java/lib/psych/versions.rb:10: warning: already initialized constant DEFAULT_SNAKEYAML_VERSION ``` This is because bundler loads the versions file relatively from the local gemspec, and then internally loads the psych gem, causing the redefinition warnings. Instead, we modify the $LOAD_PATH so that when working locally on the `psych` repo, the local version of `psych` gets used.
2020-02-26Fix gem installationDavid Rodríguez
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 ```
2019-07-24Set required_ruby_version to 2.4.0Jean Boussier
2019-07-21Do not use add_development_dependency.Hiroshi SHIBATA
2019-02-27Removed CHANGELOG from rdoc files.SHIBATA Hiroshi
2019-02-26Retired to write CHANGELOG.rdoc. Because It has no update from 2015.SHIBATA Hiroshi
2018-12-17Added psych.jar. Because it's accidentally removed.SHIBATA Hiroshi
2018-12-17Update file list for JRubySHIBATA Hiroshi
2018-10-20Use latest stable version of rake-compiler-dockSHIBATA Hiroshi
2018-10-13Use secure connection for pyyaml.orgEspartaco Palma
2018-10-12Add comment for require fallback in Ruby repositoryMarcus Stollsteimer
2018-08-24typofixSHIBATA Hiroshi
2018-08-24Try to use version constants from versions.rb againSHIBATA Hiroshi
2018-04-16Bump version to 3.0.3.pre1 for testing for jruby/jruby#5142.Charles Oliver Nutter
2018-04-16Update to SnakeYAML 1.21 to fix jruby/jruby#5098.Charles Oliver Nutter
This will be released in Psych 3.0.3. See #352.
2018-02-22Removed date field from gemspec.SHIBATA Hiroshi
2018-02-05Removed gitignore from gemspec files.SHIBATA Hiroshi
2017-12-19Bump version to 3.0.2SHIBATA Hiroshi
2017-12-04bump version to 3.0.1SHIBATA Hiroshi
2017-12-01Drop to support Ruby 1.9.2, 1.9.3, 2.0.0, 2.1.SHIBATA Hiroshi
2017-12-01Bump version to 3.0.0SHIBATA Hiroshi
2017-11-27Bump version to 3.0.0.beta4SHIBATA Hiroshi
2017-07-14bump version to 3.0.0.beta3SHIBATA Hiroshi
2017-07-12Added cross compilation task for mingw platformSHIBATA Hiroshi
2017-07-12Added rake-compiler-dock for mingw buildsSHIBATA Hiroshi
2017-07-12styleSHIBATA Hiroshi
2017-06-19make frozen_string_literal: trueSHIBATA Hiroshi
2017-06-16bump version to 3.0.0.beta2SHIBATA Hiroshi
2017-03-27Removed needless fileSHIBATA Hiroshi
2017-03-10start to develop psych 3.0.0SHIBATA Hiroshi
2017-02-24Bump version to 2.2.4.Charles Oliver Nutter
2017-02-23Bump version to 2.2.3.Charles Oliver Nutter
2017-02-23Remove load of psych during gem builds and bump snakeyaml to 1.18.Charles Oliver Nutter
Fixes #293. Fixes jruby/jruby#4492.
2016-12-13Hardcode version, because it gets picked up from default gems.Charles Oliver Nutter
2016-12-13Hardcode Snakeyaml versions to avoid conflict with JRuby consts.Charles Oliver Nutter
2016-12-13Partly reverted load path for version constantsSHIBATA Hiroshi
2016-11-30port from ruby/ruby. It's workaround for ruby core repository installationSHIBATA Hiroshi
2016-11-29added jar file into java platformSHIBATA Hiroshi
2016-11-29constants on versions.rb move to global in gemspecSHIBATA Hiroshi
2016-11-29fix a typoSHIBATA Hiroshi
2016-11-29Separated java source files from default filesSHIBATA Hiroshi
2016-11-29unified jruby detectionSHIBATA Hiroshi
2016-11-29Enabled to constant references for DEFAULT_SNAKEYAML_VERSIONSHIBATA Hiroshi
2016-11-18fix library pathSHIBATA Hiroshi
2016-11-18Unify Psych version constants to psych/versions.rb.SHIBATA Hiroshi