subserver 0.4.3 → 0.4.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
  SHA1:
3
- metadata.gz: 15c004ce2d55c6836a1bed4bf035581a7b96377a
4
- data.tar.gz: 77b9e1a2f36020ec3f878bd601362148525d911f
3
+ metadata.gz: 73a284fd7153e9a8a35959b770379a35b817b0ef
4
+ data.tar.gz: 5a7322eed0c6f611e9adab75b73cb0be0968d318
5
5
  SHA512:
6
- metadata.gz: 4ec89e5f29797283ad87b823306e1a68d2f99f08e821dd83bdd14819eda0d40c6ff84e1f3c77a6734c9e1e9a6f5beb562033b9e4eb539cdd271a1f872b62c903
7
- data.tar.gz: 8d815574552d3e21bb50bded3060e115f4012f83ac5a7ae0a885236375beb2c83456940178365761f1ae1a3165c7bd5c6e1e8d1c038c91353c131aceefd968e1
6
+ metadata.gz: 0e300de116cf68d5c281dc1b5269a84fe1a37e5d96fde833f59816bab63cf8baa50a058270bccea51e733970211f4cada96c6dd6758536515fc46b85534c7b7b
7
+ data.tar.gz: 3db36a28c6c1c26a603b954bfb35b6e135d07f8c870aebe41bd15879a9d150c8d0e10b96eb7aec1b2dac7de0f69a57e2c050970ea2f6f4afd0321216e8c4bf22
@@ -1,3 +1,13 @@
1
+ # 0.4.4
2
+ - Fixes `Subserver::Testing::Pubsub.topic` missing arguments
3
+
4
+ # 0.4.3
5
+ - Dependacy Updates
6
+ - Ruby >=2.4
7
+ - google-cloud-pubsub ~> 1.7
8
+ - self.auto_subscribe method #25
9
+ - Subserver::Testing::Pubsub::Topic.publish now supports the `attributes` arugment
10
+
1
11
  # 0.4.1
2
12
  - Fix Listener#process_message error handling
3
13
 
data/README.md CHANGED
@@ -21,9 +21,9 @@ Subserver is based off of [Sidekiq](https://github.com/mperham/sidekiq). A huge
21
21
 
22
22
  ## Requirements
23
23
  Subserver Supports:
24
- - Ruby >= 2.3.1
24
+ - Ruby >= 2.4.0
25
25
  - All Rails releases >= 4.0
26
- - Google Cloud PubSub Ruby >= 0.31.0
26
+ - Google Cloud PubSub Ruby >= 1.7.0
27
27
 
28
28
  ## Getting Started
29
29
  ### Install
@@ -8,7 +8,7 @@ module Subserver
8
8
  end
9
9
  end
10
10
 
11
- def topic(name)
11
+ def topic(name, project: nil, skip_lookup: nil, async: nil)
12
12
  Topic.new
13
13
  end
14
14
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Subserver
3
- VERSION = "0.4.3"
3
+ VERSION = "0.4.4"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: subserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Hill