sqs_async 0.0.4 → 0.0.5
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/lib/sqs_async/core_ext/hash.rb +13 -0
- data/lib/sqs_async.rb +13 -0
- data/spec/spec_helper.rb +1 -1
- data/spec/sqs_queue_spec.rb +0 -1
- data/spec/sqs_spec.rb +0 -1
- metadata +12 -8
- /data/lib/{sqs.rb → sqs_async/sqs.rb} +0 -0
- /data/lib/{sqs_attributes.rb → sqs_async/sqs_attributes.rb} +0 -0
- /data/lib/{sqs_message.rb → sqs_async/sqs_message.rb} +0 -0
- /data/lib/{sqs_permission.rb → sqs_async/sqs_permission.rb} +0 -0
- /data/lib/{sqs_queue.rb → sqs_async/sqs_queue.rb} +0 -0
- /data/lib/{sqs_send_message_response.rb → sqs_async/sqs_send_message_response.rb} +0 -0
- /data/lib/{sqs_utilities.rb → sqs_async/sqs_utilities.rb} +0 -0
data/lib/sqs_async.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Core extensions and global mixins
|
2
|
+
require 'sqs_async/core_ext/hash'
|
3
|
+
require 'sqs_async/sqs_utilities'
|
4
|
+
|
5
|
+
# App classes and modules
|
6
|
+
require 'sqs_async/sqs_queue'
|
7
|
+
require 'sqs_async/sqs_message'
|
8
|
+
require 'sqs_async/sqs_attributes'
|
9
|
+
require 'sqs_async/sqs_permission'
|
10
|
+
require 'sqs_async/sqs_send_message_response'
|
11
|
+
|
12
|
+
# main app module
|
13
|
+
require 'sqs_async/sqs'
|
data/spec/spec_helper.rb
CHANGED
data/spec/sqs_queue_spec.rb
CHANGED
data/spec/sqs_spec.rb
CHANGED
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: sqs_async
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.0.
|
5
|
+
version: 0.0.5
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- EdgeCase <contact@edgecase.com>
|
@@ -134,13 +134,15 @@ extensions: []
|
|
134
134
|
extra_rdoc_files: []
|
135
135
|
|
136
136
|
files:
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
137
|
+
- lib/sqs_async/core_ext/hash.rb
|
138
|
+
- lib/sqs_async/sqs.rb
|
139
|
+
- lib/sqs_async/sqs_attributes.rb
|
140
|
+
- lib/sqs_async/sqs_message.rb
|
141
|
+
- lib/sqs_async/sqs_permission.rb
|
142
|
+
- lib/sqs_async/sqs_queue.rb
|
143
|
+
- lib/sqs_async/sqs_send_message_response.rb
|
144
|
+
- lib/sqs_async/sqs_utilities.rb
|
145
|
+
- lib/sqs_async.rb
|
144
146
|
- spec/fixtures/add_permission.xml
|
145
147
|
- spec/fixtures/change_message_visibility.xml
|
146
148
|
- spec/fixtures/create_queue.xml
|
@@ -168,6 +170,8 @@ rdoc_options: []
|
|
168
170
|
|
169
171
|
require_paths:
|
170
172
|
- lib
|
173
|
+
- lib/sqs_async
|
174
|
+
- lib/sqs_async/core_ext
|
171
175
|
required_ruby_version: !ruby/object:Gem::Requirement
|
172
176
|
none: false
|
173
177
|
requirements:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|