fluent-plugin-gcloud-pubsub 0.0.4 → 0.0.5

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: 84d1b14b193a8f13674d9ab98a2e9dcd7bc5bdb6
4
- data.tar.gz: 112de588cff9c2b668e67172d5ba2f96bc760736
3
+ metadata.gz: 4f484330773ad0bb5298aae2292a4a3f7d2f8dab
4
+ data.tar.gz: c120209bcc503d97523bf7448c560129e470cceb
5
5
  SHA512:
6
- metadata.gz: 3c784df7c4a5fcc1d49327bd2e515377513cb4fec1bf0bdadec8f3fe246c511845945d493ddc88eb8cd9aff5feba39fbf89ffb9077a198fb083b1af2437a84f3
7
- data.tar.gz: 3c1901d62d917397633b47ae4b7fc8038eefba1143903087e905adf847159f82ac56bb4e9c89dd35dce8031809fc5a82cacccb239c330e51cbd9eafa135e9ea6
6
+ metadata.gz: 5359ab83c56e472bbe6759de4a7ab1453fb0ddec359cd01c0209a70dfc1ea44cf17fbda54b172880a3ca41aa8f67262c0b4396c2d8fe6410d4f4272a39faec63
7
+ data.tar.gz: 273aeb15dba6c7d8021f24c559a72f72997cf924ac7cdbafa4451d19c18fb122d09a8666858089311e1a9dad39dcfb80ef56abf828940071da6d8555b2b162c7
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
7
7
  gem.license = "MIT"
8
8
  gem.homepage = "https://github.com/mdoi/fluent-plugin-gcloud-pubsub"
9
9
  gem.summary = gem.description
10
- gem.version = "0.0.4"
10
+ gem.version = "0.0.5"
11
11
  gem.authors = ["Masayuki DOI"]
12
12
  gem.email = "dotquasar@gmail.com"
13
13
  gem.has_rdoc = false
@@ -26,10 +26,8 @@ module Fluent
26
26
  def configure(conf)
27
27
  super
28
28
 
29
- raise Fluent::ConfigError, "'project' must be specified." unless @project
30
29
  raise Fluent::ConfigError, "'topic' must be specified." unless @topic
31
30
  raise Fluent::ConfigError, "'subscription' must be specified." unless @subscription
32
- raise Fluent::ConfigError, "'key' must be specified." unless @key
33
31
 
34
32
  configure_parser(conf)
35
33
  end
@@ -28,9 +28,7 @@ module Fluent
28
28
  def configure(conf)
29
29
  super
30
30
 
31
- raise Fluent::ConfigError, "'project' must be specified." unless @project
32
31
  raise Fluent::ConfigError, "'topic' must be specified." unless @topic
33
- raise Fluent::ConfigError, "'key' must be specified." unless @key
34
32
  end
35
33
 
36
34
  def start
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-gcloud-pubsub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masayuki DOI