sync_enum 0.1.8 → 0.1.9

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: febdaeae9f99310dd29657d4294941a738cf8b07015f3800c0186f240a242c65
4
- data.tar.gz: 276c5fd41952b7d159a770e50062cf467941cf3049214ff27445f17240003cb9
3
+ metadata.gz: ab12a635098636f8714ca655447cc0e54d2ebd01e9dec0b2b6d3914a4f4e9dd4
4
+ data.tar.gz: c1e237de773f27c1407c5e94341ea4db238897aec3f8e545d119549cfb4aced9
5
5
  SHA512:
6
- metadata.gz: 7dd4f2667166167e0f85a4159601e76c5f5b8bed7dc4862cb4a1363c8c5a3f56506f4e83679b38a27b823ddd658c4c010b11f9934c6587f56fb09e920520f9b0
7
- data.tar.gz: 9d0c1357cd82832b29b8256f7881fc62e46fccecfcfccbf3367faf9488b151f738d234168779351a415c33432596311928e588409c9f052b90156a87d5a10606
6
+ metadata.gz: 6ef76e643d3d1c429089d6cfc0634ab8f0646e7a985ed339ce261221658098933e93a106fcbeab85987a13a2d1d212794fb72b4d2465d44fc17cbc682ef5e12e
7
+ data.tar.gz: 4251c11a4066ec950ec6734ba89564582d4dac6dd98b4ec0e2791cd890766abcffffc01d5e03b0752cf223fcafae604bbdf1ad9a042c93eb7f0d31403e5e8948
data/.rubocop.yml CHANGED
@@ -1,8 +1,6 @@
1
- require:
2
- - rubocop-rspec
3
-
4
1
  plugins:
5
2
  - rubocop-rake
3
+ - rubocop-rspec
6
4
 
7
5
  AllCops:
8
6
  TargetRubyVersion: 2.7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [0.1.9] - 2026-04-01
2
+
3
+ ### Changed
4
+ - Updated to use a newer version of rubocop (1.81.1). Rubocop now runs
5
+ with no errors or warnings.
6
+
1
7
  ## [0.1.8] - 2026-04-01
2
8
 
3
9
  ### Changed
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sync_enum (0.1.8)
4
+ sync_enum (0.1.9)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -52,22 +52,12 @@ GEM
52
52
  rubocop-ast (1.47.1)
53
53
  parser (>= 3.3.7.2)
54
54
  prism (~> 1.4)
55
- rubocop-capybara (2.22.1)
56
- lint_roller (~> 1.1)
57
- rubocop (~> 1.72, >= 1.72.1)
58
- rubocop-factory_bot (2.27.1)
59
- lint_roller (~> 1.1)
60
- rubocop (~> 1.72, >= 1.72.1)
61
55
  rubocop-rake (0.7.1)
62
56
  lint_roller (~> 1.1)
63
57
  rubocop (>= 1.72.1)
64
- rubocop-rspec (2.31.0)
65
- rubocop (~> 1.40)
66
- rubocop-capybara (~> 2.17)
67
- rubocop-factory_bot (~> 2.22)
68
- rubocop-rspec_rails (~> 2.28)
69
- rubocop-rspec_rails (2.29.1)
70
- rubocop (~> 1.61)
58
+ rubocop-rspec (3.9.0)
59
+ lint_roller (~> 1.1)
60
+ rubocop (~> 1.81)
71
61
  ruby-progressbar (1.13.0)
72
62
  unicode-display_width (3.2.0)
73
63
  unicode-emoji (~> 4.1)
@@ -85,7 +75,7 @@ DEPENDENCIES
85
75
  rspec (~> 3.0)
86
76
  rubocop (~> 1.81)
87
77
  rubocop-rake (~> 0.7)
88
- rubocop-rspec (~> 2.31)
78
+ rubocop-rspec (~> 3)
89
79
  sync_enum!
90
80
 
91
81
  BUNDLED WITH
data/Rakefile CHANGED
@@ -24,9 +24,8 @@ RSpec::Core::RakeTask.new(:spec)
24
24
 
25
25
  require 'rubocop/rake_task'
26
26
 
27
- RuboCop::RakeTask.new do |task|
28
- task.requires << 'rubocop-rspec'
29
- end
27
+ # By default, task name is :rubocop, description is "Run Rubocop"
28
+ RuboCop::RakeTask.new
30
29
 
31
30
  # task default: %i[spec rubocop]
32
31
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  class SyncEnum
4
4
  # The version number for sync_enum.
5
- VERSION = '0.1.8'
5
+ VERSION = '0.1.9'
6
6
  end
data/sync_enum.gemspec CHANGED
@@ -55,7 +55,7 @@ Gem::Specification.new do |spec|
55
55
  spec.add_development_dependency 'rspec', '~> 3.0'
56
56
  spec.add_development_dependency 'rubocop', '~> 1.81'
57
57
  spec.add_development_dependency 'rubocop-rake', '~> 0.7'
58
- spec.add_development_dependency 'rubocop-rspec', '~> 2.31'
58
+ spec.add_development_dependency 'rubocop-rspec', '~> 3'
59
59
 
60
60
  # Requires that future versions of this gem must be pushed using a
61
61
  # rubygems account with multifactor authentication (MFA) turned on.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sync_enum
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bruce Tesar
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2026-04-01 00:00:00.000000000 Z
10
+ date: 2026-04-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: bundler
@@ -99,14 +99,14 @@ dependencies:
99
99
  requirements:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
- version: '2.31'
102
+ version: '3'
103
103
  type: :development
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
106
106
  requirements:
107
107
  - - "~>"
108
108
  - !ruby/object:Gem::Version
109
- version: '2.31'
109
+ version: '3'
110
110
  description: |
111
111
  Iterate over multiple enumerators in parallel, using the external
112
112
  interface based on the #next method. Each call to #next returns an