sync_enum 0.1.7 → 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 +4 -4
- data/.rubocop.yml +1 -3
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +6 -16
- data/Rakefile +2 -3
- data/lib/sync_enum/version.rb +1 -1
- data/sync_enum.gemspec +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ab12a635098636f8714ca655447cc0e54d2ebd01e9dec0b2b6d3914a4f4e9dd4
|
|
4
|
+
data.tar.gz: c1e237de773f27c1407c5e94341ea4db238897aec3f8e545d119549cfb4aced9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ef76e643d3d1c429089d6cfc0634ab8f0646e7a985ed339ce261221658098933e93a106fcbeab85987a13a2d1d212794fb72b4d2465d44fc17cbc682ef5e12e
|
|
7
|
+
data.tar.gz: 4251c11a4066ec950ec6734ba89564582d4dac6dd98b4ec0e2791cd890766abcffffc01d5e03b0752cf223fcafae604bbdf1ad9a042c93eb7f0d31403e5e8948
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
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
|
+
|
|
7
|
+
## [0.1.8] - 2026-04-01
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- Updated the used version of json to v. 2.19.3, due to security issues.
|
|
11
|
+
|
|
1
12
|
## [0.1.7] - 2025-10-14
|
|
2
13
|
|
|
3
14
|
### Changed
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
sync_enum (0.1.
|
|
4
|
+
sync_enum (0.1.9)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
@@ -10,7 +10,7 @@ GEM
|
|
|
10
10
|
public_suffix (>= 2.0.2, < 7.0)
|
|
11
11
|
ast (2.4.3)
|
|
12
12
|
diff-lcs (1.6.2)
|
|
13
|
-
json (2.
|
|
13
|
+
json (2.19.3)
|
|
14
14
|
language_server-protocol (3.17.0.5)
|
|
15
15
|
launchy (2.5.2)
|
|
16
16
|
addressable (~> 2.8)
|
|
@@ -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 (
|
|
65
|
-
|
|
66
|
-
rubocop
|
|
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 (~>
|
|
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
|
-
|
|
28
|
-
|
|
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
|
|
data/lib/sync_enum/version.rb
CHANGED
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', '~>
|
|
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,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sync_enum
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bruce Tesar
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 2026-04-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: bundler
|
|
@@ -100,14 +99,14 @@ dependencies:
|
|
|
100
99
|
requirements:
|
|
101
100
|
- - "~>"
|
|
102
101
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '
|
|
102
|
+
version: '3'
|
|
104
103
|
type: :development
|
|
105
104
|
prerelease: false
|
|
106
105
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
106
|
requirements:
|
|
108
107
|
- - "~>"
|
|
109
108
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '
|
|
109
|
+
version: '3'
|
|
111
110
|
description: |
|
|
112
111
|
Iterate over multiple enumerators in parallel, using the external
|
|
113
112
|
interface based on the #next method. Each call to #next returns an
|
|
@@ -152,7 +151,6 @@ metadata:
|
|
|
152
151
|
source_code_uri: https://github.com/brucetesar/sync_enum
|
|
153
152
|
changelog_uri: https://github.com/brucetesar/sync_enum/blob/master/CHANGELOG.md
|
|
154
153
|
rubygems_mfa_required: 'true'
|
|
155
|
-
post_install_message:
|
|
156
154
|
rdoc_options: []
|
|
157
155
|
require_paths:
|
|
158
156
|
- lib
|
|
@@ -167,8 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
167
165
|
- !ruby/object:Gem::Version
|
|
168
166
|
version: '0'
|
|
169
167
|
requirements: []
|
|
170
|
-
rubygems_version: 3.
|
|
171
|
-
signing_key:
|
|
168
|
+
rubygems_version: 3.6.3
|
|
172
169
|
specification_version: 4
|
|
173
170
|
summary: Iterates over multiple enumerators.
|
|
174
171
|
test_files: []
|