fluent-plugin-mqtt 0.0.5 → 0.0.6

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
  SHA1:
3
- metadata.gz: 3fd8e3a50f128c2eed1ad45698e0717d60f1af41
4
- data.tar.gz: 17a9e5405a4d7d72e14773c7e29d43cd596a1b9f
3
+ metadata.gz: 96315f278adc57d6d5a4e6f22116f62272fdf5ea
4
+ data.tar.gz: dad6ba53dfdc4e9888057abfb90b4af792d6fd11
5
5
  SHA512:
6
- metadata.gz: a182d419e6e18de083194728813d0d7c7fb41a680499947e037a050a5a1c7723e81daa8adb60f286eaf841a36ee72d9b7d58d625fc2becd9c7984cc93a263ccc
7
- data.tar.gz: f4424914b01c172b33cfd7b68036ff9b20184ed0c24fabcdddc8a8a516f9839e13e9efe3c94563398539402ac36cf01be547a54d67fb2e7f78142f702ca66cd4
6
+ metadata.gz: 6210488f8272233eaeb8bbd2a802099805ae988d3f00ef3bd36ee387dfa979999661d88ee12d7f0f55949f1211f9c871fc9b62ec1ab8708b9d88c1ec8f6d8e71
7
+ data.tar.gz: 4cbb5309316e8caa817c39be748c4e2c9d6d5dfa2da5201b1439b017576c40219428cce9d4d51a264e8bdaccea40b850164b6eb01253fa34d7fe43f4cf501f20
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |spec|
6
6
  spec.name = "fluent-plugin-mqtt"
7
- spec.version = "0.0.5"
7
+ spec.version = "0.0.6"
8
8
  spec.authors = ["Yuuna Kurita"]
9
9
  spec.email = ["yuuna.m@gmail.com"]
10
10
  spec.summary = %q{fluentd input plugin for mqtt server}
@@ -48,7 +48,7 @@ module Fluent
48
48
  opts[:password] = @password if @password
49
49
  opts[:ssl] = @ssl if @ssl
50
50
  opts[:ca_file] = @ca if @ca
51
- opts[:cert_file] = @crt if @crt
51
+ opts[:cert_file] = @cert if @cert
52
52
  opts[:key_file] = @key if @key
53
53
  @connect = MQTT::Client.connect(opts)
54
54
  @connect.subscribe(@topic)
@@ -53,7 +53,7 @@ module Fluent
53
53
  opts[:password] = @password if @password
54
54
  opts[:ssl] = @ssl if @ssl
55
55
  opts[:ca_file] = @ca if @ca
56
- opts[:cert_file] = @crt if @crt
56
+ opts[:cert_file] = @cert if @cert
57
57
  opts[:key_file] = @key if @key
58
58
  @connect = MQTT::Client.connect(opts)
59
59
  super
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-mqtt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuuna Kurita