lite-ruby 1.1.12 → 1.1.13
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 +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/lite/ruby/open_struct.rb +7 -2
- data/lib/lite/ruby/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe679570639cc347f06cb66cb3cefab5f43c76d66d2460050f91a9f2107a9baf
|
4
|
+
data.tar.gz: 9c342175047a4783844895e1fce5759d0351d6ed15383a5c245700637408af3b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51c1075b41fee9f7c36a6530e31caa46fe1edbdc3779708485c3f4d6d9f0ea2c16bd31e282414926fa1d1962d69fd75920144a4c9dbb66c2b7a65f43af316e3d
|
7
|
+
data.tar.gz: 360692b781b2e8eaa7d511a1c225fe6721a241673fe670eaa682056d96379448a622c4cc3abe0a30c3350c9411d6aea3ae58084e821f79cdd5039b0479d51a7a
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [1.1.13] - 2021-07-05
|
10
|
+
### Added
|
11
|
+
- Added more OpenStruct backwards compatibility
|
12
|
+
|
9
13
|
## [1.1.12] - 2021-07-05
|
10
14
|
### Added
|
11
15
|
- Added OpenStruct backwards compatibility
|
data/Gemfile.lock
CHANGED
@@ -65,8 +65,13 @@ if Lite::Ruby.configuration.monkey_patches.include?('open_struct')
|
|
65
65
|
def new_ostruct_member!(name)
|
66
66
|
return if is_method_protected!(name)
|
67
67
|
|
68
|
-
define_singleton_method!
|
69
|
-
|
68
|
+
if respond_to?(:define_singleton_method!)
|
69
|
+
define_singleton_method(name) { @table[name] }
|
70
|
+
define_singleton_method("#{name}=") { |x| @table[name] = x }
|
71
|
+
else
|
72
|
+
define_singleton_method!(name) { @table[name] }
|
73
|
+
define_singleton_method!("#{name}=") { |x| @table[name] = x }
|
74
|
+
end
|
70
75
|
end
|
71
76
|
|
72
77
|
end
|
data/lib/lite/ruby/version.rb
CHANGED