lite-ruby 1.1.13 → 1.1.14

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
  SHA256:
3
- metadata.gz: fe679570639cc347f06cb66cb3cefab5f43c76d66d2460050f91a9f2107a9baf
4
- data.tar.gz: 9c342175047a4783844895e1fce5759d0351d6ed15383a5c245700637408af3b
3
+ metadata.gz: ff28b7935f151e1b0b380b88a846a43d5c26fd0ed8f0ec3868d8766c906d7a86
4
+ data.tar.gz: 44d6ba04ae35be6ccc79030b8cf818cf7c073962619190e11ac0082146650e7a
5
5
  SHA512:
6
- metadata.gz: 51c1075b41fee9f7c36a6530e31caa46fe1edbdc3779708485c3f4d6d9f0ea2c16bd31e282414926fa1d1962d69fd75920144a4c9dbb66c2b7a65f43af316e3d
7
- data.tar.gz: 360692b781b2e8eaa7d511a1c225fe6721a241673fe670eaa682056d96379448a622c4cc3abe0a30c3350c9411d6aea3ae58084e821f79cdd5039b0479d51a7a
6
+ metadata.gz: db466696e81b718156b43a0e9ae3f78f0c5c0dfd960b53fc34aaf4ef393be7b5aef9bf31acbb13d9612be1c9305c4bcc43aa4996f19bf3776ce57cbc38448238
7
+ data.tar.gz: cec62b1c8ab6f99e88cc9d775d91411543ea016e9f40ea4c2c3d5fac7a8770bd5f985cf1a598c8a0c4a4a1b1505ae06d8dbda75ea3e3361b3a7ac5f01acf4307
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.14] - 2021-07-05
10
+ ### Changed
11
+ - Fixed mistake in OpenStruct backwards compatibility
12
+
9
13
  ## [1.1.13] - 2021-07-05
10
14
  ### Added
11
15
  - Added more OpenStruct backwards compatibility
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- lite-ruby (1.1.13)
4
+ lite-ruby (1.1.14)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -65,13 +65,11 @@ 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
- 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
68
+ method = 'define_singleton_method'
69
+ method << '!' if respond_to?(:define_singleton_method!)
70
+
71
+ send(method, name) { @table[name] }
72
+ send(method, "#{name}=") { |x| @table[name] = x }
75
73
  end
76
74
 
77
75
  end
@@ -3,7 +3,7 @@
3
3
  module Lite
4
4
  module Ruby
5
5
 
6
- VERSION = '1.1.13'
6
+ VERSION = '1.1.14'
7
7
 
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lite-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.13
4
+ version: 1.1.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez