cloudenvoy 0.6.rc1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cb4f27d4f01e971d8542f5768166caa9d797ad9799372bf167ddfe5e970ecb51
4
- data.tar.gz: 5f2ed34bde0799fc94d574203f4589ede66b90da39a4f8e9bf4b6a8b41fac483
3
+ metadata.gz: bf662a5a379a166bfada0d2e6763f2e295fabc49c650645dde38d31e7a8f2a7a
4
+ data.tar.gz: f5158fa17c16de28513c734467e87ee7b4287a29934eb7b1ea1cda7178ea3dda
5
5
  SHA512:
6
- metadata.gz: 6a71d84e06873d76352df8ccef0ee32f95a439e62447bf90e2a57694816753337186b6f57ad9864911d8bfec270eff31b8ccd0183c36f894ce030cd1b5c6ccb8
7
- data.tar.gz: ac0be67ec3bc95c2b9cc32745dcbd72c87fcd06cf329dbf007cde92139b8c70a712545afc7e69bb44bd61397641989e1af7f8ff41bdeb82efe5400ca84993a58
6
+ metadata.gz: 9a8ab145fdd8c596ee9ad44bb69714424afc27c067fcfed0ea3ca167270faa6d9d25bb24be1328e95dbb25ca6e70a886cd2e14dc1f35b449633f02015c99cbbc
7
+ data.tar.gz: c6591198e2302c3c6b5e7858fd71ccf0d4cc176ff9bfd642b39e59af19549d7be51225001dfb3a022878bdf1448834a4b97e14a4e1bb7f3310228df445454c54
data/CHANGELOG.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Changelog
2
2
 
3
- ## [v0.6.rc1](https://github.com/keypup-io/cloudenvoy/tree/v0.6.rc1) (2022-04-11)
3
+ ## [v0.6.0](https://github.com/keypup-io/cloudenvoy/tree/v0.6.0) (2022-07-21)
4
4
 
5
- [Full Changelog](https://github.com/keypup-io/cloudenvoy/compare/v0.5.0...v0.6.rc1)
5
+ [Full Changelog](https://github.com/keypup-io/cloudenvoy/compare/v0.5.0...v0.6.0)
6
6
 
7
7
  **Improvements:**
8
8
  - Pub/sub: Add `publish_all` method to publish multiple messages in one batch
data/README.md CHANGED
@@ -10,8 +10,6 @@ Pub/Sub solves that event distribution problem by allowing developers to define
10
10
 
11
11
  Cloudenvoy works with the local pub/sub emulator as well, meaning that you can work offline without access to GCP.
12
12
 
13
- **Maturity**: The gem is relatively young but is production-friendly. We at Keypup have already processed hundreds of thousands of pub/sub messages through Cloudenvoy. If you spot any bug, feel free to report it! we're aiming at a `v1.0.0` around Q1 2022.
14
-
15
13
  ## Summary
16
14
 
17
15
  1. [Installation](#installation)
@@ -141,7 +141,7 @@ GEM
141
141
  i18n (1.10.0)
142
142
  concurrent-ruby (~> 1.0)
143
143
  jwt (2.3.0)
144
- loofah (2.14.0)
144
+ loofah (2.18.0)
145
145
  crass (~> 1.0.2)
146
146
  nokogiri (>= 1.5.9)
147
147
  mail (2.7.1)
@@ -155,7 +155,7 @@ GEM
155
155
  multi_json (1.15.0)
156
156
  multipart-post (2.1.1)
157
157
  nio4r (2.5.8)
158
- nokogiri (1.13.3)
158
+ nokogiri (1.13.6)
159
159
  mini_portile2 (~> 2.8.0)
160
160
  racc (~> 1.4)
161
161
  os (1.1.4)
@@ -163,7 +163,7 @@ GEM
163
163
  puma (5.6.4)
164
164
  nio4r (~> 2.0)
165
165
  racc (1.6.0)
166
- rack (2.2.3)
166
+ rack (2.2.4)
167
167
  rack-test (1.1.0)
168
168
  rack (>= 1.0, < 3)
169
169
  rails (6.0.4.7)
@@ -184,7 +184,7 @@ GEM
184
184
  rails-dom-testing (2.0.3)
185
185
  activesupport (>= 4.2.0)
186
186
  nokogiri (>= 1.6)
187
- rails-html-sanitizer (1.4.2)
187
+ rails-html-sanitizer (1.4.3)
188
188
  loofah (~> 2.3)
189
189
  railties (6.0.4.7)
190
190
  actionpack (= 6.0.4.7)
@@ -101,7 +101,7 @@ GEM
101
101
  public_suffix (4.0.6)
102
102
  puma (5.6.4)
103
103
  nio4r (~> 2.0)
104
- rack (2.2.3)
104
+ rack (2.2.4)
105
105
  rack-protection (2.2.0)
106
106
  rack
107
107
  rake (13.0.6)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cloudenvoy
4
- VERSION = '0.6.rc1'
4
+ VERSION = '0.6.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudenvoy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.rc1
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Arnaud Lachaume
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-04-11 00:00:00.000000000 Z
11
+ date: 2022-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -333,11 +333,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
333
333
  version: 2.4.0
334
334
  required_rubygems_version: !ruby/object:Gem::Requirement
335
335
  requirements:
336
- - - ">"
336
+ - - ">="
337
337
  - !ruby/object:Gem::Version
338
- version: 1.3.1
338
+ version: '0'
339
339
  requirements: []
340
- rubygems_version: 3.2.3
340
+ rubygems_version: 3.1.6
341
341
  signing_key:
342
342
  specification_version: 4
343
343
  summary: Cross-application messaging using GCP Pub/Sub (alpha)