famoseagle-sweat_shop 0.8.0 → 0.8.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.
Files changed (3) hide show
  1. data/VERSION.yml +1 -1
  2. data/bin/sweatd +3 -0
  3. metadata +16 -15
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
- :patch: 0
3
2
  :major: 0
4
3
  :minor: 8
4
+ :patch: 1
data/bin/sweatd ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require File.dirname(__FILE__) + '/../lib/sweat_shop/sweatd'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: famoseagle-sweat_shop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amos Elliston
@@ -10,44 +10,42 @@ bindir: bin
10
10
  cert_chain: []
11
11
 
12
12
  date: 2009-05-29 00:00:00 -07:00
13
- default_executable:
13
+ default_executable: sweatd
14
14
  dependencies: []
15
15
 
16
16
  description: TODO
17
17
  email: amos@geni.com
18
- executables: []
19
-
18
+ executables:
19
+ - sweatd
20
20
  extensions: []
21
21
 
22
- extra_rdoc_files: []
23
-
22
+ extra_rdoc_files:
23
+ - LICENSE
24
+ - README.markdown
24
25
  files:
25
26
  - History.txt
26
27
  - LICENSE
27
- - Rakefile
28
28
  - README.markdown
29
+ - Rakefile
29
30
  - VERSION.yml
30
- - lib/message_queue
31
+ - config/defaults.yml
32
+ - config/sweatshop.yml
31
33
  - lib/message_queue/base.rb
32
34
  - lib/message_queue/kestrel.rb
33
35
  - lib/message_queue/rabbit-async.rb
34
36
  - lib/message_queue/rabbit.rb
35
- - lib/sweat_shop
37
+ - lib/sweat_shop.rb
36
38
  - lib/sweat_shop/metaid.rb
37
39
  - lib/sweat_shop/sweatd.rb
38
40
  - lib/sweat_shop/worker.rb
39
- - lib/sweat_shop.rb
40
41
  - test/hello_worker.rb
41
42
  - test/test_functional_worker.rb
42
43
  - test/test_helper.rb
43
44
  - test/test_sweatshop.rb
44
- - config/defaults.yml
45
- - config/sweatshop.yml
46
45
  has_rdoc: true
47
46
  homepage: http://github.com/famoseagle/sweat-shop
48
47
  post_install_message:
49
48
  rdoc_options:
50
- - --inline-source
51
49
  - --charset=UTF-8
52
50
  require_paths:
53
51
  - lib
@@ -70,5 +68,8 @@ rubygems_version: 1.2.0
70
68
  signing_key:
71
69
  specification_version: 2
72
70
  summary: SweatShop is a simple asynchronous worker queue build on top of rabbitmq/ampq
73
- test_files: []
74
-
71
+ test_files:
72
+ - test/hello_worker.rb
73
+ - test/test_functional_worker.rb
74
+ - test/test_helper.rb
75
+ - test/test_sweatshop.rb