Update ruby-hashie to 3.5.5.
# Change Log ## [3.5.5] - 2017-02-24 [3.5.5]: https://github.com/intridea/hashie/compare/v3.5.4...v3.5.5 ### Added * [#326](https://github.com/intridea/hashie/pull/326): Added `Hashie::Extensions::Mash::KeepOriginalKeys` to give Mashes the ability to keep the original structure given to it - [@michaelherold](https://github.com/michaelherold). ### Fixed * [#415](https://github.com/intridea/hashie/pull/415): Fixed Mash logging keys multiple times which lead to a bad user experience or, in some cases, errors - [@michaelherold](https://github.com/michaelherold). ## [3.5.4] - 2017-02-22 [3.5.4]: https://github.com/intridea/hashie/compare/v3.5.3...v3.5.4 ### Added * [#412](https://github.com/intridea/hashie/pull/412): Added a Hashie::Extensions::Mash::SymbolizeKeys extension that overrides the default stringification behavior for keys - [@michaelherold](https://github.com/michaelherold). ### Fixed * [#409](https://github.com/intridea/hashie/pull/409): Fixed Railtie detection for projects where Rails is defined but Railties are not availble - [@CallumD](https://github.com/callumd). * [#411](https://github.com/intridea/hashie/pull/411): Fixed a performance regression from 3.4.3 that caused a 10x slowdown in OmniAuth - [@michaelherold](https://github.com/michaelherold). ## [3.5.3] - 2017-02-11 [3.5.3]: https://github.com/intridea/hashie/compare/v3.5.2...v3.5.3 ### Fixed * [#402](https://github.com/intridea/hashie/pull/402): Use a Railtie to set Hashie.logger on rails boot - [@matthewrudy](https://github.com/matthewrudy). * [#406](https://github.com/intridea/hashie/pull/406): Ensure that subclasses that disable warnings propagate that setting to grandchild classes - [@michaelherold](https://github.com/michaelherold). * Your contribution here. ## [3.5.2] - 2017-02-10 [3.5.2]: https://github.com/intridea/hashie/compare/v3.5.1...v3.5.2 ### Added * [#395](https://github.com/intridea/hashie/pull/395): Add the ability to disable warnings in Mash subclasses - [@michaelherold](https://github.com/michaelherold). * [#400](https://github.com/intridea/hashie/pull/400): Fix Hashie.logger load and set the Hashie logger to the Rails logger in a Rails environment - [@michaelherold](https://github.com/michaelherold). ### Fixed * [#396](https://github.com/intridea/hashie/pull/396): Fix for specs in #381: Incorrect use of shared context meant example was not being run - [@biinari](https://github.com/biinari). * [#399](https://github.com/intridea/hashie/pull/399): Fix passing Pathname object to Hashie::Mesh.load() - [@albb0920](https://github.com/albb0920). ### Miscellanous * [#397](https://github.com/intridea/hashie/pull/397): Add the integration specs harness into the main test tasks - [@michaelherold](https://github.com/michaelherold). ## [3.5.1] - 2017-01-31 * [#392](https://github.com/intridea/hashie/pull/392): Fix for #391: Require all dependencies of Hashie::Mash - [@dblock](https://github.com/dblock). [3.5.1]: https://github.com/intridea/hashie/compare/v3.5.0...v3.5.1 ## [3.5.0] - 2017-01-31 * [#386](https://github.com/intridea/hashie/pull/386): Fix for #385: Make `deep_merge` always `deep_dup` nested hashes before merging them in so that there are no shared references between the two hashes being merged. - [@mltsy](https://github.com/mltsy). * [#389](https://github.com/intridea/hashie/pull/389): Support Ruby 2.4.0 - [@camelmasa](https://github.com/camelmasa). [3.5.0]: https://github.com/intridea/hashie/compare/v3.4.6...v3.5.0 ### Added * [#381](https://github.com/intridea/hashie/pull/381): Add a logging layer that lets us report potential issues to our users. As the first logged issue, report when a `Hashie::Mash` is attempting to overwrite a built-in method, since that is one of our number one questions - [@michaelherold](https://github.com/michaelherold). ### Changed * [#384](https://github.com/intridea/hashie/pull/384): Updated to CodeClimate 1.x - [@boffbowsh](https://github.com/boffbowsh). ### Fixed * [#369](https://github.com/intridea/hashie/pull/369): If a translation for a property exists when using IndifferentAccess and IgnoreUndeclared, use the translation to find the property - [@whitethunder](https://github.com/whitethunder). * [#376](https://github.com/intridea/hashie/pull/376): Leave string index unchanged if it can't be converted to integer for Array#dig - [@sazor](https://github.com/sazor). * [#377](https://github.com/intridea/hashie/pull/377): Dont use Rubygems to check ruby version - [@sazor](https://github.com/sazor). * [#378](https://github.com/intridea/hashie/pull/378): Deep find all searches inside all nested hashes - [@sazor](https://github.com/sazor). * [#380](https://github.com/intridea/hashie/pull/380): Evaluate procs default values of Dash in object initialization - [@sazor](https://github.com/sazor). ### Miscellanous * [#387](https://github.com/intridea/hashie/pull/387): Fix builds failing due to Rake 11 having a breaking change - [@michaelherold](https://github.com/michaelherold).
This commit is contained in:
parent
289d8bc1ac
commit
ec4292f0ab
3 changed files with 28 additions and 9 deletions
|
@ -1,14 +1,13 @@
|
|||
# $NetBSD: Makefile,v 1.5 2016/10/15 15:17:07 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2017/03/20 14:28:58 taca Exp $
|
||||
#
|
||||
|
||||
DISTNAME= hashie-3.4.6
|
||||
DISTNAME= hashie-3.5.5
|
||||
CATEGORIES= misc
|
||||
|
||||
MAINTAINER= tsutsui@NetBSD.org
|
||||
HOMEPAGE= https://github.com/intridea/hashie
|
||||
COMMENT= Small collection of tools that make hashes more powerful
|
||||
|
||||
|
||||
LICENSE= mit
|
||||
|
||||
USE_LANGUAGES= # none
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.5 2016/10/15 15:17:07 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.6 2017/03/20 14:28:58 taca Exp $
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/.yardopts
|
||||
${GEM_LIBDIR}/CHANGELOG.md
|
||||
|
@ -24,19 +24,25 @@ ${GEM_LIBDIR}/lib/hashie/extensions/deep_merge.rb
|
|||
${GEM_LIBDIR}/lib/hashie/extensions/ignore_undeclared.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/indifferent_access.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/key_conversion.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/mash/keep_original_keys.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/mash/safe_assignment.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/mash/symbolize_keys.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/merge_initializer.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/method_access.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/parsers/yaml_erb_parser.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/pretty_inspect.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/ruby_version.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/ruby_version_check.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/strict_key_access.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/stringify_keys.rb
|
||||
${GEM_LIBDIR}/lib/hashie/extensions/symbolize_keys.rb
|
||||
${GEM_LIBDIR}/lib/hashie/hash.rb
|
||||
${GEM_LIBDIR}/lib/hashie/logger.rb
|
||||
${GEM_LIBDIR}/lib/hashie/mash.rb
|
||||
${GEM_LIBDIR}/lib/hashie/railtie.rb
|
||||
${GEM_LIBDIR}/lib/hashie/rash.rb
|
||||
${GEM_LIBDIR}/lib/hashie/trash.rb
|
||||
${GEM_LIBDIR}/lib/hashie/utils.rb
|
||||
${GEM_LIBDIR}/lib/hashie/version.rb
|
||||
${GEM_LIBDIR}/spec/hashie/array_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/clash_spec.rb
|
||||
|
@ -53,7 +59,9 @@ ${GEM_LIBDIR}/spec/hashie/extensions/ignore_undeclared_spec.rb
|
|||
${GEM_LIBDIR}/spec/hashie/extensions/indifferent_access_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/indifferent_access_with_rails_hwia_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/key_conversion_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/mash/keep_original_keys_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/mash/safe_assignment_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/mash/symbolize_keys_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/merge_initializer_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/method_access_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/extensions/strict_key_access_spec.rb
|
||||
|
@ -64,8 +72,20 @@ ${GEM_LIBDIR}/spec/hashie/mash_spec.rb
|
|||
${GEM_LIBDIR}/spec/hashie/parsers/yaml_erb_parser_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/rash_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/trash_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/utils_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie/version_spec.rb
|
||||
${GEM_LIBDIR}/spec/hashie_spec.rb
|
||||
${GEM_LIBDIR}/spec/integration/omniauth-oauth2/app.rb
|
||||
${GEM_LIBDIR}/spec/integration/omniauth-oauth2/integration_spec.rb
|
||||
${GEM_LIBDIR}/spec/integration/omniauth-oauth2/some_site.rb
|
||||
${GEM_LIBDIR}/spec/integration/omniauth/app.rb
|
||||
${GEM_LIBDIR}/spec/integration/omniauth/integration_spec.rb
|
||||
${GEM_LIBDIR}/spec/integration/rails-without-dependency/integration_spec.rb
|
||||
${GEM_LIBDIR}/spec/integration/rails/app.rb
|
||||
${GEM_LIBDIR}/spec/integration/rails/integration_spec.rb
|
||||
${GEM_LIBDIR}/spec/spec_helper.rb
|
||||
${GEM_LIBDIR}/spec/support/integration_specs.rb
|
||||
${GEM_LIBDIR}/spec/support/logger.rb
|
||||
${GEM_LIBDIR}/spec/support/module_context.rb
|
||||
${GEM_LIBDIR}/spec/support/ruby_version_check.rb
|
||||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.6 2016/10/15 15:17:07 taca Exp $
|
||||
$NetBSD: distinfo,v 1.7 2017/03/20 14:28:58 taca Exp $
|
||||
|
||||
SHA1 (hashie-3.4.6.gem) = d703ca1b2df4189c35ec6100a436cc4271c18bd4
|
||||
RMD160 (hashie-3.4.6.gem) = 3e361f738c7b550e9dfaeacdd06522dc9bb30f3d
|
||||
SHA512 (hashie-3.4.6.gem) = 68782865411a21a32e8b81f5d1dd29cdd9e934ffe18a7222a9631df00275cb5ba6c6cfd8b87be510a0ec202e9286660c17e4ead6e35697bb15b8c72b30971797
|
||||
Size (hashie-3.4.6.gem) = 62464 bytes
|
||||
SHA1 (hashie-3.5.5.gem) = 0ea78133f0a989909e2b15e9568e62e575431a69
|
||||
RMD160 (hashie-3.5.5.gem) = 4079e162e80b24ec02c1ddd4fb7859144e38604b
|
||||
SHA512 (hashie-3.5.5.gem) = 60853f1a0ef274a6cd5b13b6a4085c11d867a0e5a83ebf1f1b210b7635db5789cda515710e2b794e67933f71a579a41b75923e6aff872389b205caf04c4ecc3d
|
||||
Size (hashie-3.5.5.gem) = 71680 bytes
|
||||
|
|
Loading…
Reference in a new issue