fluent-plugin-out-solr 0.0.6 → 0.0.7

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: 7b582635ea5b9599bb0ffad3ff691afe325faa65
4
- data.tar.gz: 940b3f04bcb7a3cdfdbd5dbabef135be23c0656c
3
+ metadata.gz: 29d034e8c1faa78cbe36e893d23b73a9b17e0a4e
4
+ data.tar.gz: 73b23c5a00f78b91908361553df0e43d70b050c9
5
5
  SHA512:
6
- metadata.gz: 6eb9e32bbe6766c0a5d278a9131b45af9fc03412d16e72266bf153e88c30354d5c7bf0acd6ffc643d10c8a4fc07030cf7abdd71cccb348bdf484b78489294ee3
7
- data.tar.gz: 367a03794954616edfc202e9ea4d0b199838ab66fb23cf16826d95897baa6424aa69332faa8e90b87177e9660616b973609077e06e05e5585ff000d9c1849d22
6
+ metadata.gz: 8a9b304dcd71d5736f8eed8a77f374f7bb6f214513de3376ed27871ee0d99f08601440336a1cdfab140dabf8ade2515d7d41238599f10342b1872fea196e97e8
7
+ data.tar.gz: 27615560b0bfce39b231eab953508c21b14f09cde242b83395828c17c464eba3a6b7dcc45da589f265dc241cc878c73efc770f6ba531daef0c59f4d912069f61
data/.rubocop.yml CHANGED
@@ -3,5 +3,12 @@ LineLength:
3
3
 
4
4
  MethodLength:
5
5
  Enabled: true
6
- CountComments: false # count full line comments?
6
+ CountComments: false
7
7
  Max: 50
8
+
9
+ CyclomaticComplexity:
10
+ Max: 10
11
+
12
+ ClassLength:
13
+ CountComments: false
14
+ Max: 100
@@ -5,7 +5,7 @@ $LOAD_PATH.push File.expand_path('../lib', __FILE__)
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = 'fluent-plugin-out-solr'
8
- s.version = '0.0.6'
8
+ s.version = '0.0.7'
9
9
  s.authors = %w(diogo pitr haruyama )
10
10
  s.email = ['haruyama@unixuser.org']
11
11
  s.description = %q(Solr output plugin for Fluent event collector)
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Fluent
4
4
  # Solr output plugin for Fluent
5
- class SolrOutput < Fluent::BufferedOutput
5
+ class SolrOutput < BufferedOutput
6
6
  Fluent::Plugin.register_output('solr', self)
7
7
 
8
8
  require 'fluent/plugin/solr_util'
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Fluent
4
4
  # Solr output plugin for Fluent
5
- class SolrTimeSlicedOutput < Fluent::TimeSlicedOutput
5
+ class SolrTimeSlicedOutput < TimeSlicedOutput
6
6
  Fluent::Plugin.register_output('solr_time_sliced', self)
7
7
 
8
8
  require 'fluent/plugin/solr_util'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-out-solr
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - diogo