eventboss 1.0.3 → 1.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5843c0715c1ad30f5ecdad0cc0620a89b63c345c9e242c78bd024b20aeec48fd
4
- data.tar.gz: 47bea7828117f32e92c21dfa03dd77f649820fefbed0ae66a1932d4cbb452db1
3
+ metadata.gz: ce355134cb50bbfb96cb7f2876bd90cba15dd05d5cc26c3a11199441d5ea3d4c
4
+ data.tar.gz: 07aaa37d0dd6fa9c711633a1c8780d8c5aaa631bc27ee6e20eb06781def48383
5
5
  SHA512:
6
- metadata.gz: 56156dc88ba3c4fcde6b4256ffe75d4e50a8edde6d06f8ed4decc324a455c50efa781bea539191b76548054f5b4468b63bebe84fa1f1d1cff84f47bd9760dc72
7
- data.tar.gz: 0dba982102ee2fbab16b1e2168e25912df853497c612efbd1ab314b931ef1100b4c7bac32fb80b787317ae8c3fda13f3833cc9c3a293f449cd7bfa246bc5f744
6
+ metadata.gz: e08db0b838a919df8aeac0e8552f2b1db2d8aa6523fd0a2c92c0114836db9f2235a9223f7f6aa03be1d961603cd6eaaf4f025b73d86bd72badc6bcac4383fa68
7
+ data.tar.gz: 185b630f77e2b62b96f1adac579d7fb8c26593a3d2cac981a06c9da1baff40abeca60fdb999d80177faf1349c43d635501f4c6aa0acb7fbbf782c85bc7e3f953
data/README.md CHANGED
@@ -1,6 +1,30 @@
1
1
  # Eventboss
2
2
 
3
- Eventboss ruby client.
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') { false }
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
@@ -1,3 +1,3 @@
1
1
  module Eventboss
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
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.3
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-05-27 00:00:00.000000000 Z
11
+ date: 2019-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: concurrent-ruby