larva 1.1.2 → 1.1.3

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: cfaa4b9a6ff919d5f0aa1612a1c10f5b4f79f80a
4
- data.tar.gz: ea1caa084a630cd2d8397e6621f6c1f2ce6e80f6
3
+ metadata.gz: 898090372a81b7d5f2fab12ba4cecc22407351a2
4
+ data.tar.gz: e0b4bce533b9bf59d4d86e71783edd6b20673e70
5
5
  SHA512:
6
- metadata.gz: 1dd87a1aee18fa7fe46afd0d40d5e80366bef6543bb1fdb088924c8f9f9ca3626f888212a82ac4a72dc72a89f461d17fe83b290342d6accbf4d0b4a8b1e6c080
7
- data.tar.gz: 3801c9bad24bb8d427eb28297b8051c5f7e76072e6e37f96ade3dd26c9dda4d7bbea5a52de1205fde404437959c6558eb0fac0931fcb09a05e57adc695df720d
6
+ metadata.gz: 1618480b83e2aeb0753a3cd0947e433e625abbf8976061b30f8201e8e7a94a0f4a0caa60396c60e97947e3bd04e2f8edd38f3349f0f5c74b7d566f93076ceca6
7
+ data.tar.gz: e37e1ad66b5a73370786302ce97495a94bf09ab514988bc96ea75daf813e9dd85e4819e2486eb87445f42dd8d6561d8748936d100aa10ba650512bc28bb3f969
@@ -1,3 +1,6 @@
1
+ # 1.1.3 / 2015-01-30
2
+ * [BUGFIX] Fix issue with HashWithIndifferentAccess.
3
+
1
4
  # 1.1.2 / 2015-01-30
2
5
  * [BUGFIX] Fix issue with daemon creator failing due to lack of inflector support from ActiveSupport.
3
6
 
@@ -394,7 +394,7 @@ module ActiveSupport
394
394
  if options[:for] == :to_hash
395
395
  value.to_hash
396
396
  else
397
- value.nested_under_indifferent_access
397
+ HashWithIndifferentAccess.new(value)
398
398
  end
399
399
  elsif value.is_a?(Array)
400
400
  unless options[:for] == :assignment
@@ -1,3 +1,3 @@
1
1
  module Larva
2
- VERSION = '1.1.2'
2
+ VERSION = '1.1.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: larva
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - iHiD