cyclop 0.1.0

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,141 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: cyclop
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Joseph HALTER
9
+ - Jonathan TRON
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2011-06-01 00:00:00.000000000 +02:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: bson_ext
18
+ requirement: &2162229520 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 1.3.1
24
+ type: :runtime
25
+ prerelease: false
26
+ version_requirements: *2162229520
27
+ - !ruby/object:Gem::Dependency
28
+ name: mongo
29
+ requirement: &2162229000 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ~>
33
+ - !ruby/object:Gem::Version
34
+ version: 1.3.1
35
+ type: :runtime
36
+ prerelease: false
37
+ version_requirements: *2162229000
38
+ - !ruby/object:Gem::Dependency
39
+ name: posix-spawn
40
+ requirement: &2162228520 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ~>
44
+ - !ruby/object:Gem::Version
45
+ version: 0.3.6
46
+ type: :runtime
47
+ prerelease: false
48
+ version_requirements: *2162228520
49
+ - !ruby/object:Gem::Dependency
50
+ name: rake
51
+ requirement: &2162228040 !ruby/object:Gem::Requirement
52
+ none: false
53
+ requirements:
54
+ - - ~>
55
+ - !ruby/object:Gem::Version
56
+ version: 0.8.7
57
+ type: :development
58
+ prerelease: false
59
+ version_requirements: *2162228040
60
+ - !ruby/object:Gem::Dependency
61
+ name: rspec
62
+ requirement: &2162227560 !ruby/object:Gem::Requirement
63
+ none: false
64
+ requirements:
65
+ - - ~>
66
+ - !ruby/object:Gem::Version
67
+ version: 2.6.0
68
+ type: :development
69
+ prerelease: false
70
+ version_requirements: *2162227560
71
+ - !ruby/object:Gem::Dependency
72
+ name: rocco
73
+ requirement: &2162227080 !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ~>
77
+ - !ruby/object:Gem::Version
78
+ version: '0.7'
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: *2162227080
82
+ description: Job queue with MongoDB with emphasis on never losing any task even if
83
+ worker fails hard (segfault).
84
+ email:
85
+ - joseph.halter@thetalentbox.com
86
+ - jonathan.tron@thetalentbox.com
87
+ executables:
88
+ - cyclop
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - .gitignore
93
+ - .rspec
94
+ - Gemfile
95
+ - README.md
96
+ - Rakefile
97
+ - bin/cyclop
98
+ - cyclop.gemspec
99
+ - lib/cyclop.rb
100
+ - lib/cyclop/action.rb
101
+ - lib/cyclop/job.rb
102
+ - lib/cyclop/version.rb
103
+ - lib/cyclop/worker.rb
104
+ - spec/cyclop/action_spec.rb
105
+ - spec/cyclop/job_spec.rb
106
+ - spec/cyclop/worker_spec.rb
107
+ - spec/cyclop_spec.rb
108
+ - spec/fixtures/actions/email.rb
109
+ - spec/spec_helper.rb
110
+ has_rdoc: true
111
+ homepage: https://github.com/TalentBox/cyclop
112
+ licenses: []
113
+ post_install_message:
114
+ rdoc_options: []
115
+ require_paths:
116
+ - lib
117
+ required_ruby_version: !ruby/object:Gem::Requirement
118
+ none: false
119
+ requirements:
120
+ - - ! '>='
121
+ - !ruby/object:Gem::Version
122
+ version: '0'
123
+ required_rubygems_version: !ruby/object:Gem::Requirement
124
+ none: false
125
+ requirements:
126
+ - - ! '>='
127
+ - !ruby/object:Gem::Version
128
+ version: '0'
129
+ requirements: []
130
+ rubyforge_project: cyclop
131
+ rubygems_version: 1.6.2
132
+ signing_key:
133
+ specification_version: 3
134
+ summary: Job queue with MongoDB
135
+ test_files:
136
+ - spec/cyclop/action_spec.rb
137
+ - spec/cyclop/job_spec.rb
138
+ - spec/cyclop/worker_spec.rb
139
+ - spec/cyclop_spec.rb
140
+ - spec/fixtures/actions/email.rb
141
+ - spec/spec_helper.rb