each_in_thread 0.1.8 → 0.1.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 000c4932d6b7ab56f6e3176c340f6b2ba5b956b29e34c693a7a022e22002ea58
4
- data.tar.gz: b96c2ec7fb4d121ed7d4d546dda55af4ff661485061e0a1eaba620ac2cadecdf
3
+ metadata.gz: 7dfb256fa1cc5e530d042e055a9baf7fc36bb131dbe363cd02ef4ab65faf5760
4
+ data.tar.gz: b9ef9cd80038b171ef6a234581883795edd94be5e5c1954a5ff1f4706d75358d
5
5
  SHA512:
6
- metadata.gz: 1da765f00083e1f2260950f59e418fc2f2a8412fafe8b03f672f7fb144fedce2c3d140cca882198856136fb50c9d26ccdf4ea6301c1e117d41ab50e4d92a4207
7
- data.tar.gz: 4511a341356d3733f306aed05c5f45b3c9d2b166a804749466a022405d5ed7b098dc3ae0ae8b3d035f31e79ae2f92c90e2f6a73fafd60ee480963d2c85a1812d
6
+ metadata.gz: f4e1cd118540b2f3eb47eca2d870ed15ff9ef89d44bf550e0188816f3419958e20ccb1ca8f26ade92489a9c1afdbf820d65b34952d6d96edfea6eb7a163e4e22
7
+ data.tar.gz: b2ca08c5533ba3094098227a814869e3fdf2e41cf1cf76830093da2ac1525152f5c60fd04c889f16860d9f6d6aeecf3e1af62c425eaead17dcd725adcc104211
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- each_in_thread (0.1.8)
4
+ each_in_thread (0.1.10)
5
5
  thread (= 0.1.0)
6
6
 
7
7
  GEM
@@ -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/your-github-username/each_in_thread"
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/your-github-username/each_in_thread"
21
- spec.metadata["changelog_uri"] = "https://github.com/your-github-username/each_in_thread/blob/main/CHANGELOG.md"
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)/}) }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EachInThread
4
- VERSION = "0.1.8"
4
+ VERSION = "0.1.10"
5
5
  end
metadata CHANGED
@@ -1,11 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: each_in_thread
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
  - Igor Novikov
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
11
  date: 2023-06-29 00:00:00.000000000 Z
@@ -34,7 +34,6 @@ extra_rdoc_files: []
34
34
  files:
35
35
  - ".github/workflows/gem-push.yml"
36
36
  - ".gitignore"
37
- - ".idea/workspace.xml"
38
37
  - ".rspec"
39
38
  - ".rubocop.yml"
40
39
  - CODE_OF_CONDUCT.md
@@ -47,15 +46,15 @@ files:
47
46
  - lib/each_in_thread.rb
48
47
  - lib/each_in_thread/version.rb
49
48
  - sig/each_in_thread.rbs
50
- homepage: https://github.com/your-github-username/each_in_thread
49
+ homepage: https://github.com/Galaxy83/each_in_thread
51
50
  licenses:
52
51
  - MIT
53
52
  metadata:
54
53
  allowed_push_host: https://rubygems.org
55
- homepage_uri: https://github.com/your-github-username/each_in_thread
56
- source_code_uri: https://github.com/your-github-username/each_in_thread
57
- changelog_uri: https://github.com/your-github-username/each_in_thread/blob/main/CHANGELOG.md
58
- post_install_message:
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
+ post_install_message:
59
58
  rdoc_options: []
60
59
  require_paths:
61
60
  - lib
@@ -70,8 +69,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
70
69
  - !ruby/object:Gem::Version
71
70
  version: '0'
72
71
  requirements: []
73
- rubygems_version: 3.4.1
74
- signing_key:
72
+ rubygems_version: 3.0.3.1
73
+ signing_key:
75
74
  specification_version: 4
76
75
  summary: A Ruby gem for running tasks on enumerables in separate threads
77
76
  test_files: []
data/.idea/workspace.xml DELETED
@@ -1,13 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectViewState">
4
- <option name="autoscrollFromSource" value="true" />
5
- <option name="hideEmptyMiddlePackages" value="true" />
6
- <option name="showLibraryContents" value="true" />
7
- </component>
8
- <component name="PropertiesComponent">{
9
- &quot;keyToString&quot;: {
10
- &quot;settings.editor.selected.configurable&quot;: &quot;preferences.pluginManager&quot;
11
- }
12
- }</component>
13
- </project>