each_in_thread 0.1.9 → 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 +4 -4
- data/Gemfile.lock +1 -1
- data/each_in_thread.gemspec +3 -3
- data/lib/each_in_thread/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7dfb256fa1cc5e530d042e055a9baf7fc36bb131dbe363cd02ef4ab65faf5760
|
|
4
|
+
data.tar.gz: b9ef9cd80038b171ef6a234581883795edd94be5e5c1954a5ff1f4706d75358d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f4e1cd118540b2f3eb47eca2d870ed15ff9ef89d44bf550e0188816f3419958e20ccb1ca8f26ade92489a9c1afdbf820d65b34952d6d96edfea6eb7a163e4e22
|
|
7
|
+
data.tar.gz: b2ca08c5533ba3094098227a814869e3fdf2e41cf1cf76830093da2ac1525152f5c60fd04c889f16860d9f6d6aeecf3e1af62c425eaead17dcd725adcc104211
|
data/Gemfile.lock
CHANGED
data/each_in_thread.gemspec
CHANGED
|
@@ -10,15 +10,15 @@ Gem::Specification.new do |spec|
|
|
|
10
10
|
|
|
11
11
|
spec.summary = "A Ruby gem for running tasks on enumerables in separate threads"
|
|
12
12
|
spec.description = "EachInThread extends Ruby's Enumerable module to provide a simple, efficient way to run tasks in parallel by creating separate threads for each item in an enumerable."
|
|
13
|
-
spec.homepage = "https://github.com/
|
|
13
|
+
spec.homepage = "https://github.com/Galaxy83/each_in_thread"
|
|
14
14
|
spec.license = "MIT"
|
|
15
15
|
spec.required_ruby_version = ">= 2.6.0"
|
|
16
16
|
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
18
18
|
|
|
19
19
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
20
|
-
spec.metadata["source_code_uri"] = "https://github.com/
|
|
21
|
-
spec.metadata["changelog_uri"] = "https://github.com/
|
|
20
|
+
spec.metadata["source_code_uri"] = "https://github.com/Galaxy83/each_in_thread"
|
|
21
|
+
spec.metadata["changelog_uri"] = "https://github.com/Galaxy83/each_in_thread/blob/main/CHANGELOG.md"
|
|
22
22
|
|
|
23
23
|
spec.files = Dir.chdir(__dir__) do
|
|
24
24
|
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{\A(?:\.gitignore|\.git|\.circleci|appveyor|bin|test|spec|features)/}) }
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: each_in_thread
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.10
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Igor Novikov
|
|
@@ -46,14 +46,14 @@ files:
|
|
|
46
46
|
- lib/each_in_thread.rb
|
|
47
47
|
- lib/each_in_thread/version.rb
|
|
48
48
|
- sig/each_in_thread.rbs
|
|
49
|
-
homepage: https://github.com/
|
|
49
|
+
homepage: https://github.com/Galaxy83/each_in_thread
|
|
50
50
|
licenses:
|
|
51
51
|
- MIT
|
|
52
52
|
metadata:
|
|
53
53
|
allowed_push_host: https://rubygems.org
|
|
54
|
-
homepage_uri: https://github.com/
|
|
55
|
-
source_code_uri: https://github.com/
|
|
56
|
-
changelog_uri: https://github.com/
|
|
54
|
+
homepage_uri: https://github.com/Galaxy83/each_in_thread
|
|
55
|
+
source_code_uri: https://github.com/Galaxy83/each_in_thread
|
|
56
|
+
changelog_uri: https://github.com/Galaxy83/each_in_thread/blob/main/CHANGELOG.md
|
|
57
57
|
post_install_message:
|
|
58
58
|
rdoc_options: []
|
|
59
59
|
require_paths:
|