eac_ruby_gem_support 0.12.1 → 0.13.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: 10ad28d220b69a0626d92925fd31b49077d52e08b316c1f6a782ad2829365675
4
- data.tar.gz: 482d701a171f29cf1bc71318824fe1eb433e0d9ca26f2e6b03a5c49f17fc222b
3
+ metadata.gz: 8645aeffc9ca9abe076181e9cf09ad1c7edfa30d5ce33c56764e4563b71a5342
4
+ data.tar.gz: f3a94ae7871306aba8bea186ac882e924eac17a2b7856e52bd09cf6562589fc4
5
5
  SHA512:
6
- metadata.gz: a6db2b37bf2cc9462701e81a2af7b5330d561413336a86db7051f50811901cd06d226acd1c27045f81660eb5042c3061fe79e695736def05830eb85c5a9f823f
7
- data.tar.gz: 04fb59ca2097126cfaec98cc8082ce492e96b19c1d0e737ac3d9626281163f4bb96a761f72f48755f487c58c04cfc2fdf23b8a68e4361b92c1211ed1616de10a
6
+ metadata.gz: b64aef01f47f76c3f389d65205212a702e6c24a42f6e10162c32399fb4b6fe2965b97d640347e5d83fa976dc44df6c61470269fcd7d2d59c9b75581ead914e29
7
+ data.tar.gz: e62799e38c2fd9f5f7b10876e66d108848e92e81ed1ad9fc4841a0186921d1b1ad8a6283010eff44752a0d9c9631f0a0802d68b6c6b31a45dd7e0701ae04ea67
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ plugins:
4
4
  AllCops:
5
5
  NewCops: enable
6
6
  TargetRailsVersion: 6.1
7
- TargetRubyVersion: 2.7
7
+ TargetRubyVersion: 3.2
8
8
  Exclude:
9
9
  - 'sub/**/*'
10
10
  Gemspec/DevelopmentDependencies:
@@ -1,9 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/core_ext'
4
- require 'eac_ruby_gem_support/rspec/helpers/filesystem'
5
- require 'eac_ruby_gem_support/rspec/helpers/utils'
6
- require 'eac_ruby_gem_support/rspec/specs/rubocop'
7
3
  require 'tmpdir'
8
4
 
9
5
  module EacRubyGemSupport
@@ -1,8 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_gem_support/rspec/shared_examples/spec_paths'
4
- require 'eac_ruby_gem_support/rspec/source_target_fixtures_controller'
5
- require 'eac_ruby_gem_support/source_target_fixtures'
6
3
  require 'yaml'
7
4
 
8
5
  RSpec.shared_examples 'source_target_fixtures' do |spec_file| # rubocop:disable Metrics/BlockLength
@@ -1,8 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_gem_support/rspec/spec_paths_controller'
4
- require 'eac_ruby_utils/core_ext'
5
-
6
3
  RSpec.shared_context 'spec_paths' do |the_spec_file|
7
4
  cattr_accessor :spec_paths_controller
8
5
  self.spec_paths_controller = EacRubyGemSupport::Rspec::SpecPathsController.new(self,
@@ -1,8 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_gem_support/source_target_fixtures'
4
- require 'eac_ruby_utils/core_ext'
5
-
6
3
  module EacRubyGemSupport
7
4
  module Rspec
8
5
  class SourceTargetFixturesController
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/core_ext'
4
-
5
3
  module EacRubyGemSupport
6
4
  module Rspec
7
5
  class SpecPathsController
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/core_ext'
4
-
5
3
  module EacRubyGemSupport
6
4
  class SourceTargetFixtures
7
5
  class SourceTargetFile
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'eac_ruby_utils/core_ext'
4
-
5
3
  module EacRubyGemSupport
6
4
  # Lists pairs of source/target files in a directory.
7
5
  class SourceTargetFixtures
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EacRubyGemSupport
4
- VERSION = '0.12.1'
4
+ VERSION = '0.13.0'
5
5
  end
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'eac_ruby_utils'
4
- EacRubyUtils::RootModuleSetup.perform __FILE__
4
+ EacRubyUtils::RootModuleSetup.perform __FILE__ do
5
+ ignore 'rspec/shared_examples/**/*'
6
+ end
5
7
 
6
8
  require 'active_support/ordered_options' # Fix "super_diff" '0.18.0'.
7
9
  require 'super_diff'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: eac_ruby_gem_support
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.13.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: 2026-02-10 00:00:00.000000000 Z
11
+ date: 2026-05-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eac_ruby_utils
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.129'
19
+ version: '0.131'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.129'
26
+ version: '0.131'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rspec
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -50,20 +50,20 @@ dependencies:
50
50
  requirements:
51
51
  - - "~>"
52
52
  - !ruby/object:Gem::Version
53
- version: '1.84'
53
+ version: '1.86'
54
54
  - - ">="
55
55
  - !ruby/object:Gem::Version
56
- version: 1.84.1
56
+ version: 1.86.1
57
57
  type: :runtime
58
58
  prerelease: false
59
59
  version_requirements: !ruby/object:Gem::Requirement
60
60
  requirements:
61
61
  - - "~>"
62
62
  - !ruby/object:Gem::Version
63
- version: '1.84'
63
+ version: '1.86'
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
- version: 1.84.1
66
+ version: 1.86.1
67
67
  - !ruby/object:Gem::Dependency
68
68
  name: rubocop-rails
69
69
  requirement: !ruby/object:Gem::Requirement
@@ -104,14 +104,14 @@ dependencies:
104
104
  requirements:
105
105
  - - "~>"
106
106
  - !ruby/object:Gem::Version
107
- version: '0.18'
107
+ version: '0.19'
108
108
  type: :runtime
109
109
  prerelease: false
110
110
  version_requirements: !ruby/object:Gem::Requirement
111
111
  requirements:
112
112
  - - "~>"
113
113
  - !ruby/object:Gem::Version
114
- version: '0.18'
114
+ version: '0.19'
115
115
  description:
116
116
  email:
117
117
  executables: []
@@ -143,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - ">="
145
145
  - !ruby/object:Gem::Version
146
- version: 2.7.0
146
+ version: '3.2'
147
147
  required_rubygems_version: !ruby/object:Gem::Requirement
148
148
  requirements:
149
149
  - - ">="