restalk 0.0.0.5 → 0.0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/README.md +33 -4
  2. metadata +4 -4
data/README.md CHANGED
@@ -8,8 +8,37 @@ It's a quick hack to allow me to quickly and simply move a project from one to t
8
8
  It has a very simple interface:
9
9
 
10
10
  ```ruby
11
- Restalk.new(:resque) # Create a queue manager (in this case, resque)
12
- Restalk.push() # Push something onto the queue
13
- Restalk.pop() # Pop something off the queue
14
- Restalk.stats() # Statistics (poss. beanstalk only?)
11
+ Restalk.init(:resque) # Create a connection to the backend (in this case, resque)
12
+ Restalk.push(object) # Push something onto the queue
13
+ Restalk.pop # Pop something off the queue
14
+ Restalk.stats # Statistics (whatever the backend gives us - could be gibberish)
15
+ ```
16
+
17
+ Author
18
+ ------
19
+
20
+ Matthew Bennett @undecisive
21
+ Got a question? Message me on [Github](http://github.com/undecisive)
22
+
23
+
24
+ License
25
+ -------
26
+
27
+ ```
28
+ The MIT License (MIT)
29
+ Copyright (c) 2012 We are PANDR
30
+
31
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
32
+ documentation files (the "Software"), to deal in the Software without restriction, including without limitation
33
+ the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
34
+ and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
35
+
36
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions
37
+ of the Software.
38
+
39
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
40
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
41
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
42
+ CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
43
+ IN THE SOFTWARE.
15
44
  ```
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.5
4
+ version: 0.0.0.8
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -43,7 +43,7 @@ dependencies:
43
43
  - - ! '>='
44
44
  - !ruby/object:Gem::Version
45
45
  version: '0'
46
- description: Makes migrating from Beanstalk to resqueue (or back again) super-simple.
46
+ description: Makes migrating from Beanstalk to resque (or back again) super-simple.
47
47
  Other backends welcome.
48
48
  email: matthew@quickwebdesign.net
49
49
  executables: []
@@ -51,7 +51,7 @@ extensions: []
51
51
  extra_rdoc_files: []
52
52
  files:
53
53
  - README.md
54
- homepage: http://github.com/undecisive
54
+ homepage: http://github.com/undecisive/restalk
55
55
  licenses: []
56
56
  post_install_message:
57
57
  rdoc_options: []
@@ -74,5 +74,5 @@ rubyforge_project:
74
74
  rubygems_version: 1.8.23
75
75
  signing_key:
76
76
  specification_version: 3
77
- summary: Abstraction layer between Beanstalk / Resqueue
77
+ summary: Abstraction layer between Beanstalk / Resque
78
78
  test_files: []