eac_ruby_utils 0.102.0 → 0.103.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a255c998a0548aa5e8367b8f620620ed10c3815cf6cfa7bb91a0f4375c819db
|
4
|
+
data.tar.gz: 8b8dad7b6318319a4e4c2696c13b55f961d7cfa7042aa2723560d08cfec29f16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 35719457a0c1fd6e7899c2ed268fa3f6f699ec6cca8da046a4e0d6d6fcc785db7a91ddb2638c86af6ca0f49cb1cf5d1e63958795dfbf46eb6dc7c9a3a9ffc3cb
|
7
|
+
data.tar.gz: f9586ed06df1e3fe7ecb358df065ce42c6c2231f2b964b2e8f908c877acbcee23e5c425e3722c17105f845e48109c6bfffcf021f115f92327de96436014bca6a
|
@@ -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
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
class Object
|
4
4
|
def pretty_debug(options = {})
|
5
|
-
|
5
|
+
print_debug_options(options)
|
6
6
|
|
7
7
|
STDERR.write(pretty_inspect)
|
8
8
|
|
@@ -10,18 +10,22 @@ class Object
|
|
10
10
|
end
|
11
11
|
|
12
12
|
def print_debug(options = {})
|
13
|
-
|
13
|
+
print_debug_options(options)
|
14
14
|
STDERR.write(to_debug + "\n")
|
15
15
|
|
16
16
|
self
|
17
17
|
end
|
18
18
|
|
19
|
-
def
|
20
|
-
|
21
|
-
|
19
|
+
def print_debug_label(label)
|
20
|
+
STDERR.write("#{label}: ")
|
21
|
+
end
|
22
22
|
|
23
|
-
|
24
|
-
|
23
|
+
def print_debug_options(options)
|
24
|
+
options[:title].if_present { |v| print_debug_title(v) }
|
25
|
+
options[:label].if_present { |v| print_debug_label(v) }
|
26
|
+
end
|
27
|
+
|
28
|
+
def print_debug_title(title)
|
25
29
|
char = '='
|
26
30
|
STDERR.write(char * (4 + title.length) + "\n")
|
27
31
|
STDERR.write("#{char} #{title} #{char}\n")
|
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.
|
4
|
+
version: 0.103.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: 2022-
|
11
|
+
date: 2022-09-13 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
|