sync_enum 0.1.8 → 0.1.10

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: 79dbde229ccead6511d4f2d95bfb74c41d778857c056049c2f087780d68a98e0
4
+ data.tar.gz: 1d40d3c0c298ed36b94153d624bdd010d7ec07ce6821679a3084931bdfba2d90
5
5
  SHA512:
6
- metadata.gz: 7dd4f2667166167e0f85a4159601e76c5f5b8bed7dc4862cb4a1363c8c5a3f56506f4e83679b38a27b823ddd658c4c010b11f9934c6587f56fb09e920520f9b0
7
- data.tar.gz: 9d0c1357cd82832b29b8256f7881fc62e46fccecfcfccbf3367faf9488b151f738d234168779351a415c33432596311928e588409c9f052b90156a87d5a10606
6
+ metadata.gz: 487b6dc1f290664253b3003c2dc6fc5512047dd5fafae778da487af210f817628a147c48a6013d2b25a080bb6223666ada24db019f33fb0c2b094ffd2b31235e
7
+ data.tar.gz: 7581e47dadacb6595a536715362d91512e17935fefe860f3a1d553a0bfd52b5baed58de1d5606ddf60ce70e9b525aedfb981c1d5f877003802320f3c208c4ad9
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,15 @@
1
+ ## [0.1.10] - 2026-04-10
2
+
3
+ ### Changed
4
+ - Updated dependency addressable from 2.8.7 to 2.9.0, due to security
5
+ concerns.
6
+
7
+ ## [0.1.9] - 2026-04-01
8
+
9
+ ### Changed
10
+ - Updated to use a newer version of rubocop (1.81.1). Rubocop now runs
11
+ with no errors or warnings.
12
+
1
13
  ## [0.1.8] - 2026-04-01
2
14
 
3
15
  ### Changed
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sync_enum (0.1.8)
4
+ sync_enum (0.1.10)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- addressable (2.8.7)
10
- public_suffix (>= 2.0.2, < 7.0)
9
+ addressable (2.9.0)
10
+ public_suffix (>= 2.0.2, < 8.0)
11
11
  ast (2.4.3)
12
12
  diff-lcs (1.6.2)
13
13
  json (2.19.3)
@@ -20,7 +20,7 @@ GEM
20
20
  ast (~> 2.4.1)
21
21
  racc
22
22
  prism (1.5.2)
23
- public_suffix (6.0.2)
23
+ public_suffix (5.1.1)
24
24
  racc (1.8.1)
25
25
  rainbow (3.1.1)
26
26
  rake (13.3.0)
@@ -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)
@@ -75,7 +65,6 @@ GEM
75
65
 
76
66
  PLATFORMS
77
67
  x64-mingw-ucrt
78
- x64-mingw32
79
68
  x86_64-linux
80
69
 
81
70
  DEPENDENCIES
@@ -85,7 +74,7 @@ DEPENDENCIES
85
74
  rspec (~> 3.0)
86
75
  rubocop (~> 1.81)
87
76
  rubocop-rake (~> 0.7)
88
- rubocop-rspec (~> 2.31)
77
+ rubocop-rspec (~> 3)
89
78
  sync_enum!
90
79
 
91
80
  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.10'
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.10
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-10 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