hashie 3.5.5 → 3.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ec77fc445035152bbc8ff4d4ce152250d2cbe448
4
- data.tar.gz: 5ce003a19f12e4f3a058713ef02fbe1e179b6dcc
3
+ metadata.gz: cafa78d0cb091db5e66ef85ddef77676109f80f7
4
+ data.tar.gz: f5ccf16d56e924e48d98115f75c5398aca749773
5
5
  SHA512:
6
- metadata.gz: f7fd9f5988b7e928f526d0bc739c754d1792af74a2ba93a328775686940d7b769e06c760cb38b9482418e397cffb7a6f4479925769537394c73b489b039f29f6
7
- data.tar.gz: d31ba3a374545f33e9c8cbf551f29aa74a27f3caed1af505c72c082bc68c6d8475a790a40721ddb6a5b6fa838a0effa47440661b0f155cf3613cae9ac481bedb
6
+ metadata.gz: 1a4b9846803f359da95ff92ce6294077028aa7b22bd88dc377301da90847bce560c81b7d0f76fa164196d813b475112125dbe7a430170774f3405016799f87df
7
+ data.tar.gz: 4dc6fac1176380cbe056c75758bc43261f9dc2fb287c6f1cf39ef42e87d8c540ea79e56b46e4550f651425154df8e6a8086d61f400c45f471a626a47e38f7809
@@ -6,6 +6,15 @@ scheme are considered to be bugs.
6
6
 
7
7
  [semver]: http://semver.org/spec/v2.0.0.html
8
8
 
9
+ ## [3.5.6] - 2017-07-12
10
+
11
+ [3.5.6]: https://github.com/intridea/hashie/compare/v3.5.5...v3.5.6
12
+
13
+ ### Miscellaneous
14
+
15
+ * [#416](https://github.com/intridea/hashie/pull/416): Fix `warning: instance variable @disable_warnings not initialized` - [@axfcampos](https://github.com/axfcampos).
16
+ * Your contribution here.
17
+
9
18
  ## [3.5.5] - 2017-02-24
10
19
 
11
20
  [3.5.5]: https://github.com/intridea/hashie/compare/v3.5.4...v3.5.5
data/README.md CHANGED
@@ -20,7 +20,7 @@ $ gem install hashie
20
20
 
21
21
  ## Upgrading
22
22
 
23
- You're reading the documentation for the stable release of Hashie, 3.5.5. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
23
+ You're reading the documentation for the stable release of Hashie, 3.5.6. Please read [UPGRADING](UPGRADING.md) when upgrading from a previous version.
24
24
 
25
25
  ## Hash Extensions
26
26
 
@@ -83,7 +83,7 @@ module Hashie
83
83
  # @api semipublic
84
84
  # @return [Boolean]
85
85
  def self.disable_warnings?
86
- !!@disable_warnings
86
+ @disable_warnings ||= false
87
87
  end
88
88
 
89
89
  # Inheritance hook that sets class configuration when inherited.
@@ -1,3 +1,3 @@
1
1
  module Hashie
2
- VERSION = '3.5.5'
2
+ VERSION = '3.5.6'
3
3
  end
@@ -19,4 +19,5 @@ RSpec.configure do |config|
19
19
  config.expect_with :rspec do |expect|
20
20
  expect.syntax = :expect
21
21
  end
22
+ config.warnings = true
22
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hashie
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.5.5
4
+ version: 3.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Bleigh
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-02-24 00:00:00.000000000 Z
12
+ date: 2017-07-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -169,7 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
169
169
  version: '0'
170
170
  requirements: []
171
171
  rubyforge_project:
172
- rubygems_version: 2.6.10
172
+ rubygems_version: 2.6.11
173
173
  signing_key:
174
174
  specification_version: 4
175
175
  summary: Your friendly neighborhood hash library.