eac_ruby_utils 0.57.2 → 0.58.0

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: e9a5ba0cb4987def93f005feb8c7d109afe4f5e202939d9a5db9e64eb8d08194
4
- data.tar.gz: 9c7632467e434195994afdf69ada8ea8820e5df639709e79cae7cb8543169129
3
+ metadata.gz: 123493b4c18d48f7366d734db4d722e0e72dd1ac0463649a45a3552c5bc8b6b7
4
+ data.tar.gz: 5858bc58b340efed7d26cf17695535a3fb26abbb121f53c4889d6f87c9f03a25
5
5
  SHA512:
6
- metadata.gz: 92cfc25fcb83ec39aff6136acd20fc30a5a9eacb493765ba034f6fa9291e022c931b55d80350fefe605a126a7f9c61b75e6e2b78e6d24b0b627912fde7a4c0fc
7
- data.tar.gz: bedc1cd2d75146ca942894d9105e4c6ce02283996c7b1192cd26f93024895feb3a3b02c5dcab0e2f50d0ef5c273c3cdd494d576f55078aa1d5c27712a1679a0a
6
+ metadata.gz: 7b3c80642b58e8eb315ca82d8d760467a7404585771907a9dbe3344e3aa3b00991e7d319beee042ee45eb36939cf93af35e38f76bd0d1642a7e9b383bdf3f023
7
+ data.tar.gz: d4dc7641afd5d36e818fcfe0e50f59c6f0cb2dd596fef6a7cf4fc31e0b19929638232669bf3f60e4c9da6a42616610517633f69bd7363d05120cf5b8a5192b0c
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'eac_ruby_utils/require_sub'
4
+ ::EacRubyUtils.require_sub(__FILE__)
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Kernel
4
+ # Raise exception with text "Not yet implemented".
5
+ def nyi
6
+ raise "Not yet implemented (Called in #{caller.first})"
7
+ end
8
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyUtils
4
- VERSION = '0.57.2'
4
+ VERSION = '0.58.0'
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.57.2
4
+ version: 0.58.0
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: 2021-01-16 00:00:00.000000000 Z
11
+ date: 2021-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -201,6 +201,8 @@ files:
201
201
  - lib/eac_ruby_utils/patches/hash.rb
202
202
  - lib/eac_ruby_utils/patches/hash/options_consumer.rb
203
203
  - lib/eac_ruby_utils/patches/hash/sym_keys_hash.rb
204
+ - lib/eac_ruby_utils/patches/kernel.rb
205
+ - lib/eac_ruby_utils/patches/kernel/nyi.rb
204
206
  - lib/eac_ruby_utils/patches/module.rb
205
207
  - lib/eac_ruby_utils/patches/module/abstract_methods.rb
206
208
  - lib/eac_ruby_utils/patches/module/common_concern.rb