simple_message_queue 0.0.1 → 0.0.2
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.
- data/README.md +1 -2
- data/lib/simple_message_queue/version.rb +1 -1
- metadata +7 -6
data/README.md
CHANGED
@@ -26,7 +26,6 @@ SimpleMessageQueue.configure do |config|
|
|
26
26
|
config.idle_timeout = 10 # optional
|
27
27
|
config.wait_time_seconds = 20 # optional
|
28
28
|
config.logger = Logger.new('simple_message_queue.log') # optional
|
29
|
-
config.delay_between_polls = 60*30 # optional
|
30
29
|
end
|
31
30
|
```
|
32
31
|
|
@@ -64,7 +63,7 @@ In order to send a message with Simple Message Queue, simply call the following:
|
|
64
63
|
TestQueue.send('my_string')
|
65
64
|
```
|
66
65
|
|
67
|
-
You can send anything you would like to the queue, but it must be a string. You can send a simple message, or you can send the json representation of an object. What you send is completely up to you.
|
66
|
+
You can send anything you would like to the queue, but it must be a string and less than 256 KB (AWS SQS restriction). You can send a simple message, or you can send the json representation of an object. What you send is completely up to you.
|
68
67
|
|
69
68
|
#### Receiving Messages
|
70
69
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_message_queue
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -13,7 +13,7 @@ date: 2013-08-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: aws-sdk
|
16
|
-
requirement: &
|
16
|
+
requirement: &70244156709540 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70244156709540
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: minitest
|
27
|
-
requirement: &
|
27
|
+
requirement: &70244156709120 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ! '>='
|
@@ -32,7 +32,7 @@ dependencies:
|
|
32
32
|
version: '0'
|
33
33
|
type: :runtime
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *70244156709120
|
36
36
|
description: SimpleMessageQueue is a simple interface for Amazon Web Service's SQS.
|
37
37
|
email:
|
38
38
|
- jim@jimsmithdesign.com
|
@@ -49,7 +49,8 @@ files:
|
|
49
49
|
- lib/simple_message_queue.rb
|
50
50
|
- README.md
|
51
51
|
homepage: https://github.com/cbi/simple_message_queue
|
52
|
-
licenses:
|
52
|
+
licenses:
|
53
|
+
- MIT
|
53
54
|
post_install_message:
|
54
55
|
rdoc_options: []
|
55
56
|
require_paths:
|