fleck 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/README.md +2 -1
- data/lib/fleck/hash_with_indifferent_access.rb +1 -1
- data/lib/fleck/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db88918b523fdd99f7012fbc62e4cba76fa9608b
|
|
4
|
+
data.tar.gz: 980ec9d1ce72cbf407afb6e6196fde6f4b3fadfa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87f78806cbf265ac005aeafe5de931eb1a72ce93ab98667d0ce5764a9e68c4622d1ce64c8a69909b13e65880b37c2acbabe8a1729b1bcbfede3f0987ff80b99a
|
|
7
|
+
data.tar.gz: a4233f4a52c89178363be0177dfc98da976e1b777e8a21fac70dfda2c01c4349a55fc3e4516a07430e00cb178038377c78cf1817074cfedc499e9dc09023ea01
|
data/README.md
CHANGED
|
@@ -103,7 +103,8 @@ end
|
|
|
103
103
|
This code will automatically automatically start `N` instances of MyConsumer in background (you don't have to do anything), that will start consuming
|
|
104
104
|
messages from `my.queue` and will respond with a 200 status when the randomly generated number is greater than `0.1` and with a 500 otherwise.
|
|
105
105
|
|
|
106
|
-
**NOTE**:
|
|
106
|
+
**NOTE**: the default status code of the response is 200, but if any uncaught exception is raised from within `#on_message` method, the status
|
|
107
|
+
will automatically change to 500 and will add `"Internal Server Error"` message to response errors array.
|
|
107
108
|
|
|
108
109
|
|
|
109
110
|
## Contributing
|
data/lib/fleck/version.rb
CHANGED