eac_ruby_utils 0.128.3 → 0.128.4
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/lib/eac_ruby_utils/acts_as_immutable.rb +1 -0
- data/lib/eac_ruby_utils/common_concern/class_setup.rb +1 -0
- data/lib/eac_ruby_utils/common_concern/module_setup.rb +1 -0
- data/lib/eac_ruby_utils/enumerables_methods.rb +1 -1
- data/lib/eac_ruby_utils/envs/ssh_env/identity_file.rb +1 -0
- data/lib/eac_ruby_utils/envs/ssh_env/quiet.rb +1 -0
- data/lib/eac_ruby_utils/envs/ssh_env/terminal.rb +2 -0
- data/lib/eac_ruby_utils/objects_table.rb +1 -1
- data/lib/eac_ruby_utils/patches/module/acts_as_abstract.rb +1 -0
- data/lib/eac_ruby_utils/require_sub/base.rb +1 -0
- data/lib/eac_ruby_utils/root_module_setup/ignore.rb +1 -1
- data/lib/eac_ruby_utils/simple_cache.rb +1 -1
- data/lib/eac_ruby_utils/version.rb +1 -1
- metadata +4 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ece7a4feefc13ac980ec1a31bc65e45f3151368aae3e17582da8b59256c51ebe
|
4
|
+
data.tar.gz: dacfea09150dc5277883f9000cef330825dd0e8f9c62113094ae6d12102a8a08
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22ad03cf065154cecfdf15c300671418b50c8936bd2e3044ab270e6963769e991b3acfee71bd1bc64d0cc0710f65b852f51013b2049ee0348620f4e76ba6db06
|
7
|
+
data.tar.gz: 501937a60325f1b14350221a5fefee1233be134499b083d49fc5d542e01752bbdf111d3f7c8f72e46a57f542420226d10edca8eca39a9a5a43e725f35023e885
|
@@ -5,7 +5,7 @@ require 'eac_ruby_utils/patches/object/debug'
|
|
5
5
|
module EacRubyUtils
|
6
6
|
module EnumerablesMethods
|
7
7
|
class << self
|
8
|
-
WRITE_METHOD_PATTERNS = [/\A[a-z].*[
|
8
|
+
WRITE_METHOD_PATTERNS = [/\A[a-z].*[!=]\z/i] +
|
9
9
|
%i[\[\]= <<].map { |m| /\A#{::Regexp.quote(m)}\z/ } +
|
10
10
|
%i[add clear delete divide keep reset shift subtract]
|
11
11
|
.map { |m| /\A#{::Regexp.quote(m)}.*\z/ }
|
@@ -4,7 +4,7 @@ require 'eac_ruby_utils/regexp_parser'
|
|
4
4
|
|
5
5
|
module EacRubyUtils
|
6
6
|
class ObjectsTable
|
7
|
-
BY_PARSER = ::EacRubyUtils::RegexpParser.new(/\Aby_([
|
7
|
+
BY_PARSER = ::EacRubyUtils::RegexpParser.new(/\Aby_([^!?]+)(!)?\z/) do |m|
|
8
8
|
BY_PARSER_PARSED_STRUCT.new(m[1], "by_attribute#{'!' if m[2].present?}")
|
9
9
|
end
|
10
10
|
BY_PARSER_PARSED_STRUCT = ::Struct.new(:attribute, :method_name)
|
@@ -37,7 +37,7 @@ module EacRubyUtils
|
|
37
37
|
|
38
38
|
raise ::ArgumentError, [
|
39
39
|
"Trying to ignore path \"#{path}\" did not increase the ignored paths.",
|
40
|
-
"Argument path: \"#{path}\"", "Target path: \"#{
|
40
|
+
"Argument path: \"#{path}\"", "Target path: \"#{target_paths}\"",
|
41
41
|
"Ignored paths: #{result}"
|
42
42
|
].join("\n")
|
43
43
|
end
|
@@ -4,7 +4,7 @@ module EacRubyUtils
|
|
4
4
|
module SimpleCache
|
5
5
|
UNCACHED_METHOD_NAME_SUFFIX = '_uncached'
|
6
6
|
UNCACHED_METHOD_PATTERN = /
|
7
|
-
\A(\s+)_#{::Regexp.quote(UNCACHED_METHOD_NAME_SUFFIX)}([
|
7
|
+
\A(\s+)_#{::Regexp.quote(UNCACHED_METHOD_NAME_SUFFIX)}([!?]?)\z
|
8
8
|
/x.freeze
|
9
9
|
|
10
10
|
class << self
|
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.128.
|
4
|
+
version: 0.128.4
|
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: 2025-
|
11
|
+
date: 2025-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -118,20 +118,14 @@ dependencies:
|
|
118
118
|
requirements:
|
119
119
|
- - "~>"
|
120
120
|
- !ruby/object:Gem::Version
|
121
|
-
version: '0.
|
122
|
-
- - ">="
|
123
|
-
- !ruby/object:Gem::Version
|
124
|
-
version: 0.5.1
|
121
|
+
version: '0.6'
|
125
122
|
type: :development
|
126
123
|
prerelease: false
|
127
124
|
version_requirements: !ruby/object:Gem::Requirement
|
128
125
|
requirements:
|
129
126
|
- - "~>"
|
130
127
|
- !ruby/object:Gem::Version
|
131
|
-
version: '0.
|
132
|
-
- - ">="
|
133
|
-
- !ruby/object:Gem::Version
|
134
|
-
version: 0.5.1
|
128
|
+
version: '0.6'
|
135
129
|
- !ruby/object:Gem::Dependency
|
136
130
|
name: eac_ruby_gem_support
|
137
131
|
requirement: !ruby/object:Gem::Requirement
|