fluent-plugin-dynamodb-drc 0.0.3 → 0.0.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: eb2804881e2615cae0155a19602dd5d77e4d8560
4
- data.tar.gz: 208f95279186349209e25af2401b7fcea8e9ecc0
3
+ metadata.gz: 36dc28bf71e76193391cec0143d93fe7659f85f5
4
+ data.tar.gz: 174a8c311178694fbcc841391de6b7e052571ada
5
5
  SHA512:
6
- metadata.gz: 9cb59e95dabf59c43b027c6aee78002cd65dcfa47be47826860f5f9be9b972fa5d109b703980092ac15a390afbd8b73491e844a68eb6b9a5ed9981be10b1cf23
7
- data.tar.gz: 086206463d3ca350faf7943f1f75ce09c0b5c78482e83e3001524cc7780bdb5dcaeea248849f8a68c098fac8cf51ad2ccd18c32cfbf9e2e2237f3fb7e479de78
6
+ metadata.gz: cf679c737ab83e127890305140b36f5ee56aca54122b56378fb09a1ab88d99aa1017047e636942a4cdd6127b285cb3390c4e3c028c975014ca572bb44432ef46
7
+ data.tar.gz: 0a954355b51db2fe04ab3e3dcea67fc20cecd31510ffd035d856d21047e71eac69a1b8cbdb96839e414a2d843508278ba857cfa0aa5eed05063dec4e2374968a
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -8,8 +8,7 @@ Gem::Specification.new do |gem|
8
8
  gem.summary = gem.description
9
9
  gem.version = File.read("VERSION").strip
10
10
  gem.has_rdoc = false
11
- gem.authors = ["Takashi Matsuno", "Sadayuki Furuhashi", "CaDs"]
12
- #gem.platform = Gem::Platform::RUBY
11
+ gem.authors = ["Takashi Matsuno", "Sadayuki Furuhashi", "CaDs"]
13
12
  gem.files = `git ls-files`.split("\n")
14
13
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
15
14
  gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
@@ -2,7 +2,7 @@
2
2
  module Fluent
3
3
 
4
4
 
5
- class DynamoDBOutput < Fluent::BufferedOutput
5
+ class DynamoDBDrcOutput < Fluent::BufferedOutput
6
6
  Fluent::Plugin.register_output('dynamodb_drc', self)
7
7
 
8
8
  include DetachMultiProcessMixin
@@ -1,7 +1,7 @@
1
1
  require 'fluent/test'
2
- require 'fluent/plugin/out_dynamodb'
2
+ require 'fluent/plugin/out_dynamodb_drc'
3
3
 
4
- class DynamoDBOutputTest < Test::Unit::TestCase
4
+ class DynamoDBDrcOutput < Test::Unit::TestCase
5
5
  def setup
6
6
  Fluent::Test.setup
7
7
  end
@@ -16,7 +16,7 @@ class DynamoDBOutputTest < Test::Unit::TestCase
16
16
  ]
17
17
 
18
18
  def create_driver(conf = CONFIG)
19
- Fluent::Test::BufferedOutputTestDriver.new(Fluent::DynamoDBOutput) do
19
+ Fluent::Test::BufferedOutputTestDriver.new(Fluent::DynamoDBDrcOutput) do
20
20
  def write(chunk)
21
21
  chunk.read
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-dynamodb-drc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Matsuno
@@ -74,15 +74,14 @@ executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
- - AUTHORS
78
77
  - ChangeLog
79
78
  - Gemfile
80
79
  - README.md
81
80
  - Rakefile
82
81
  - VERSION
83
82
  - fluent-plugin-dynamodb-drc.gemspec
84
- - lib/fluent/plugin/out_dynamodb.rb
85
- - test/out_dynamodb.rb
83
+ - lib/fluent/plugin/out_dynamodb_drc.rb
84
+ - test/out_dynamodb_drc.rb
86
85
  homepage: https://github.com/kumapon/fluent-plugin-dynamodb-drc
87
86
  licenses: []
88
87
  metadata: {}
@@ -107,4 +106,4 @@ signing_key:
107
106
  specification_version: 4
108
107
  summary: Amazon DynamoDB output plugin for Fluent event collector
109
108
  test_files:
110
- - test/out_dynamodb.rb
109
+ - test/out_dynamodb_drc.rb
data/AUTHORS DELETED
@@ -1,3 +0,0 @@
1
- Takashi Matsuno
2
- Sadayuki Furuhashi
3
-