eventboss 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +25 -1
- data/lib/eventboss/configuration.rb +1 -1
- data/lib/eventboss/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ce355134cb50bbfb96cb7f2876bd90cba15dd05d5cc26c3a11199441d5ea3d4c
|
4
|
+
data.tar.gz: 07aaa37d0dd6fa9c711633a1c8780d8c5aaa631bc27ee6e20eb06781def48383
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e08db0b838a919df8aeac0e8552f2b1db2d8aa6523fd0a2c92c0114836db9f2235a9223f7f6aa03be1d961603cd6eaaf4f025b73d86bd72badc6bcac4383fa68
|
7
|
+
data.tar.gz: 185b630f77e2b62b96f1adac579d7fb8c26593a3d2cac981a06c9da1baff40abeca60fdb999d80177faf1349c43d635501f4c6aa0acb7fbbf782c85bc7e3f953
|
data/README.md
CHANGED
@@ -1,6 +1,30 @@
|
|
1
1
|
# Eventboss
|
2
2
|
|
3
|
-
|
3
|
+
[![Gem Version](https://badge.fury.io/rb/eventboss.svg)](https://badge.fury.io/rb/eventboss)
|
4
|
+
|
5
|
+
AWS based Pub/Sub implementation in Ruby.
|
6
|
+
|
7
|
+
## Features
|
8
|
+
|
9
|
+
* [x] language agnostic (ruby, js http://github.com/AirHelp/eventboss-js)
|
10
|
+
* [x] fluent interface
|
11
|
+
* [x] multithread polling (multi polling strategy)
|
12
|
+
* [x] generic queues (multiple apps sending the same event)
|
13
|
+
* [x] postponing jobs
|
14
|
+
* [x] automatic serialization/deserialization
|
15
|
+
* [x] batch sending (SQS one-to-one)
|
16
|
+
* [x] support multiple environments in the same AWS account
|
17
|
+
* [x] pluggable error handlers (airbrake, newrelic)
|
18
|
+
* [x] utility tasks (deadletter reload)
|
19
|
+
* [x] localstack compatible
|
20
|
+
* [x] rails support (preloads rails environment)
|
21
|
+
* [ ] terraform pub/sub scripts
|
22
|
+
* [ ] development mode (creates missing SNS/SQS on the fly)
|
23
|
+
* [ ] alternative infrastructure (redis?, kafka?)
|
24
|
+
* [ ] message compression
|
25
|
+
* [ ] alternative serialization (protobuf)
|
26
|
+
* [ ] subscription filtering
|
27
|
+
* [ ] fifo queues support
|
4
28
|
|
5
29
|
## Installation
|
6
30
|
|
@@ -17,7 +17,7 @@ module Eventboss
|
|
17
17
|
:sns_sqs_name_infix
|
18
18
|
|
19
19
|
def raise_on_missing_configuration
|
20
|
-
defined_or_default('raise_on_missing_configuration') {
|
20
|
+
defined_or_default('raise_on_missing_configuration') { ENV['EVENTBUS_RAISE_ON_MISSING_CONFIGURATION']&.downcase == 'true' }
|
21
21
|
end
|
22
22
|
|
23
23
|
def error_handlers
|
data/lib/eventboss/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eventboss
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- AirHelp
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: concurrent-ruby
|