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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36dc28bf71e76193391cec0143d93fe7659f85f5
|
|
4
|
+
data.tar.gz: 174a8c311178694fbcc841391de6b7e052571ada
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf679c737ab83e127890305140b36f5ee56aca54122b56378fb09a1ab88d99aa1017047e636942a4cdd6127b285cb3390c4e3c028c975014ca572bb44432ef46
|
|
7
|
+
data.tar.gz: 0a954355b51db2fe04ab3e3dcea67fc20cecd31510ffd035d856d21047e71eac69a1b8cbdb96839e414a2d843508278ba857cfa0aa5eed05063dec4e2374968a
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
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
|
|
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) }
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
require 'fluent/test'
|
|
2
|
-
require 'fluent/plugin/
|
|
2
|
+
require 'fluent/plugin/out_dynamodb_drc'
|
|
3
3
|
|
|
4
|
-
class
|
|
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::
|
|
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.
|
|
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/
|
|
85
|
-
- test/
|
|
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/
|
|
109
|
+
- test/out_dynamodb_drc.rb
|
data/AUTHORS
DELETED