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 +4 -4
- data/.rubocop.yml +1 -3
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +5 -15
- data/Rakefile +2 -3
- data/lib/sync_enum/version.rb +1 -1
- data/sync_enum.gemspec +1 -1
- metadata +4 -4
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
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/
|
|
@@ -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,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.
|
|
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-
|
|
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: '
|
|
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: '
|
|
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
|