eac_ruby_utils 0.102.0 → 0.102.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2c7e86736386edb4c749cb5fbe79308fc1fd55021153c0dda8cb663ed85e50ab
4
- data.tar.gz: 350abe9716ee7bc7ac031c65c7ac94b029a1b1a3f0ea80de98cb877519c53d6f
3
+ metadata.gz: b5f792278304cbfea532d8d098e2fb06b2d91b6868ca12e0fd52bdb615910ba8
4
+ data.tar.gz: 7164404e6bd6ba2f034e376f4cffd615babd64eb1f6ebf1e344bcdcefdab8e6f
5
5
  SHA512:
6
- metadata.gz: c2a88f7354c4529dc5a00e00f19276b5445d226375e135ff35eb4aa0e01cf7bf4326efafdb0524c87f9430dc779b16215a806a3558a19ff3ba1c540d52a25e93
7
- data.tar.gz: 6a8c6f5e3bef91ea69eee363ed327893385b6ee7f93063078957c3fa55b509b0c30a28cba603a9872be2b18d5172e5310c116dd6c9c54de85a15b9e40ce8cd27
6
+ metadata.gz: 347dcea0f538268722c6d6012c70d3b69d33a68e83ae47af1f07eb07aa4a8cbf69c712a60c3cb789636b4320d96448287efbc2b65111f4e48fb79f6386e20cad
7
+ data.tar.gz: 19edd251815456d531862729af882ecd5cc051b625f358117322037c188a3b8acca43cffe4b60062beed520bffd9fe33ecb3838f822b85f0171a47a7cf366f06
@@ -3,6 +3,7 @@
3
3
  require 'active_support/core_ext/module/introspection'
4
4
  require 'eac_ruby_utils/patches/class/common_constructor'
5
5
  require 'eac_ruby_utils/patches/module/common_concern'
6
+ require 'eac_ruby_utils/patches/module/module_parent'
6
7
  require 'eac_ruby_utils/patches/string/inflector'
7
8
 
8
9
  module EacRubyUtils
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'active_support/core_ext/module/introspection'
4
+
5
+ ::Module.alias_method :module_parent, :parent unless ::Module.method_defined?(:module_parent)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.102.0'
4
+ VERSION = '0.102.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_ruby_utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.102.0
4
+ version: 0.102.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Esquilo Azul Company
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -211,6 +211,7 @@ files:
211
211
  - lib/eac_ruby_utils/patches/module/immutable.rb
212
212
  - lib/eac_ruby_utils/patches/module/listable.rb
213
213
  - lib/eac_ruby_utils/patches/module/method_class.rb
214
+ - lib/eac_ruby_utils/patches/module/module_parent.rb
214
215
  - lib/eac_ruby_utils/patches/module/patch.rb
215
216
  - lib/eac_ruby_utils/patches/module/require_sub.rb
216
217
  - lib/eac_ruby_utils/patches/module/simple_cache.rb