seekingalpha_thread 1.0.1

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.
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: seekingalpha_thread
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Michel Epsztejn
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-07-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Forked from meh/ruby-thread. Fixes thread limit exception. Includes a
42
+ thread pool, message passing capabilities, a recursive mutex, promise, future and
43
+ delay.
44
+ email:
45
+ - michel@seekingalpha.com
46
+ executables: []
47
+ extensions: []
48
+ extra_rdoc_files: []
49
+ files:
50
+ - .gitignore
51
+ - .rspec
52
+ - .travis.yml
53
+ - Gemfile
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - lib/thread/channel.rb
58
+ - lib/thread/delay.rb
59
+ - lib/thread/every.rb
60
+ - lib/thread/future.rb
61
+ - lib/thread/pipe.rb
62
+ - lib/thread/pool.rb
63
+ - lib/thread/process.rb
64
+ - lib/thread/promise.rb
65
+ - lib/thread/recursive_mutex.rb
66
+ - spec/thread/channel_spec.rb
67
+ - spec/thread/delay_spec.rb
68
+ - spec/thread/every_spec.rb
69
+ - spec/thread/future_spec.rb
70
+ - spec/thread/pipe_spec.rb
71
+ - spec/thread/pool_spec.rb
72
+ - spec/thread/promise_spec.rb
73
+ - thread.gemspec
74
+ homepage: https://github.com/seekingalpha/ruby-thread
75
+ licenses:
76
+ - WTFPL
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - '>='
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.4.5
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Various extensions to the base thread library.
98
+ test_files:
99
+ - spec/thread/channel_spec.rb
100
+ - spec/thread/delay_spec.rb
101
+ - spec/thread/every_spec.rb
102
+ - spec/thread/future_spec.rb
103
+ - spec/thread/pipe_spec.rb
104
+ - spec/thread/pool_spec.rb
105
+ - spec/thread/promise_spec.rb