in_threads 1.4.0 → 1.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +36 -24
- data/.travis.yml +9 -7
- data/CHANGELOG.markdown +82 -0
- data/LICENSE.txt +1 -1
- data/README.markdown +11 -3
- data/in_threads.gemspec +3 -3
- data/lib/in_threads.rb +152 -114
- data/spec/in_threads_spec.rb +548 -509
- metadata +7 -8
- data/spec/spec_helper.rb +0 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: in_threads
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Kuchin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -44,14 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '0.
|
47
|
+
version: '0.49'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '0.
|
54
|
+
version: '0.49'
|
55
55
|
description:
|
56
56
|
email:
|
57
57
|
executables: []
|
@@ -61,13 +61,13 @@ files:
|
|
61
61
|
- ".gitignore"
|
62
62
|
- ".rubocop.yml"
|
63
63
|
- ".travis.yml"
|
64
|
+
- CHANGELOG.markdown
|
64
65
|
- Gemfile
|
65
66
|
- LICENSE.txt
|
66
67
|
- README.markdown
|
67
68
|
- in_threads.gemspec
|
68
69
|
- lib/in_threads.rb
|
69
70
|
- spec/in_threads_spec.rb
|
70
|
-
- spec/spec_helper.rb
|
71
71
|
homepage: http://github.com/toy/in_threads
|
72
72
|
licenses:
|
73
73
|
- MIT
|
@@ -88,10 +88,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
88
88
|
version: '0'
|
89
89
|
requirements: []
|
90
90
|
rubyforge_project: in_threads
|
91
|
-
rubygems_version: 2.6.
|
91
|
+
rubygems_version: 2.6.13
|
92
92
|
signing_key:
|
93
93
|
specification_version: 4
|
94
|
-
summary:
|
94
|
+
summary: Run all possible enumerable methods in concurrent/parallel threads
|
95
95
|
test_files:
|
96
96
|
- spec/in_threads_spec.rb
|
97
|
-
- spec/spec_helper.rb
|