sqs_processor 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/lib/sqs_processor/processor.rb +1 -1
- data/lib/sqs_processor/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6efefaed76c0681bb284588331b52a371f49642879819faa4e102e2a03b4db7f
|
4
|
+
data.tar.gz: 15192a15f7e5d75f584817733a9c8fc50ee2489c4e06273705fa1abc9f7c2499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4102296039c1b78b61cf5f7d41ad159465fc45b41678fb8953301ea667220b8a1b656771e7650454a1c3464c6e45fb7ffc6a4402342b78ffb370afde873c43b0
|
7
|
+
data.tar.gz: c497b6a153e6c7a2c4acad647e11180e14f61e6b4037c9591dce3c8f5aca93bd6b9a17c5144c8ac49ae3337a209e4cf3879d8482df1af1fca2417f121f88e035
|
@@ -99,7 +99,7 @@ module SQSProcessor
|
|
99
99
|
logger.info "Message body: #{body}"
|
100
100
|
|
101
101
|
# Call the hook method that should be implemented by the host application
|
102
|
-
result = handle_message(body['Message'])
|
102
|
+
result = handle_message(JSON.parse(body['Message']))
|
103
103
|
|
104
104
|
if result
|
105
105
|
# Delete the message from queue after successful processing
|
@@ -1,3 +1,3 @@
|
|
1
1
|
module SQSProcessor
|
2
|
-
VERSION = "0.1.
|
3
|
-
end
|
2
|
+
VERSION = "0.1.1"
|
3
|
+
end
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sqs_processor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Unni Tallman
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
10
|
date: 1980-01-02 00:00:00.000000000 Z
|
@@ -124,7 +124,7 @@ dependencies:
|
|
124
124
|
description: A comprehensive Ruby gem for processing messages from Amazon SQS queues
|
125
125
|
with configurable message handling, error recovery, and extensible processing logic.
|
126
126
|
email:
|
127
|
-
-
|
127
|
+
- unni@bigbinary.com
|
128
128
|
executables:
|
129
129
|
- sqs_processor
|
130
130
|
extensions: []
|
@@ -136,7 +136,7 @@ files:
|
|
136
136
|
- lib/sqs_processor.rb
|
137
137
|
- lib/sqs_processor/processor.rb
|
138
138
|
- lib/sqs_processor/version.rb
|
139
|
-
homepage: https://github.com/
|
139
|
+
homepage: https://github.com/unnitallman/sqs_processor
|
140
140
|
licenses:
|
141
141
|
- MIT
|
142
142
|
metadata: {}
|