File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
lib/recursive_open_struct Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ Recursive-open-struct was written by these fine people:
2
2
3
3
* Beni Cherniavsky-Paskin <cben@redhat.com>
4
4
* Cédric Felizard <cedric@felizard.fr>
5
+ * Edward Betts <edward@4angle.com>
5
6
* Federico Aloi <federico.aloi@gmail.com>
6
7
* fervic <roberto@runawaybit.com>
7
8
* Joe Rafaniello <jrafanie@redhat.com>
Original file line number Diff line number Diff line change
1
+ 1.1.0 / 2018-02-03
2
+ ==================
3
+
4
+ * NEW/FIX [ #56 ] ( https://github.com/aetherknight/recursive-open-struct/issues/56 ) :
5
+ Add better support for Ruby 2.3+'s ` #dig ` method (when it exists for the
6
+ current version of Ruby), so that nested Hashes are properly converted to
7
+ RecursiveOpenStructs. ` OpenStruct#dig ` 's implementation was returning Hashes
8
+ and does not handle ` recurse_over_arrays ` so ROS needs special support.
9
+ Thanks to maxp-edcast for reporting the issue.
10
+ * FIX [ #55 ] ( https://github.com/aetherknight/recursive-open-struct/pull/55 ) :
11
+ EdwardBetts: Fixed a typo in the documentation/comment for ` #method_missing `
12
+
1
13
1.0.5 / 2017-06-21
2
14
==================
3
15
Original file line number Diff line number Diff line change 3
3
require 'ostruct'
4
4
5
5
class RecursiveOpenStruct < OpenStruct
6
- VERSION = "1.0.5 "
6
+ VERSION = "1.1.0 "
7
7
end
You can’t perform that action at this time.
0 commit comments