fluent-plugin-to_js 0.0.2 → 0.0.3

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: 41c139e881be240d76c2474d963687b5ffd669be
4
- data.tar.gz: 8f2cc0ec28cc0830a3f6a9c4387ce841c60c9df9
3
+ metadata.gz: 89c9a1eaf1c61b383ec01670b4503dacfed9105f
4
+ data.tar.gz: cddc074511520e1629676a481a7249a5bac2ad0f
5
5
  SHA512:
6
- metadata.gz: 57ab7c5327e25157d9c2c30dad424bf6865aa06476cb6fdc5110f63414c00432c5afb559bd8927c762dc468142a639f94992f08630b4911213c1c2c4ce379680
7
- data.tar.gz: 55b849d99ddb53d143ddce832a6adbc0f7f98d00daae683b4df53275bd3f0ff4a202d861e47190861c794f853f04eb9d889dde4abd99f0e7e09f7312f2399eb5
6
+ metadata.gz: 715b6d5c7d58ff07fc7fe0774c2e5c733e8974a36ffb232fb80ddd28e1d5e48be9883033b5a702aac9742c946c9b65b8c515967297c48a88222315d64675a1b2
7
+ data.tar.gz: 27fa366c16f1c1f826968cea12c43c706bd1072abb8f228af25b5108494ed0666634bd63fd062d4285bd85749e5e69cb9a58acfa420ae848cb0092402a09650d
data/README.md CHANGED
@@ -12,7 +12,7 @@ gem install fluent-plugin-to_js
12
12
 
13
13
  ```xml
14
14
  <match test.**>
15
- @type tojstr
15
+ @type tojs
16
16
  field_name to_string
17
17
  </match>
18
18
  ```
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "fluent-plugin-to_js"
8
- spec.version = "0.0.2"
8
+ spec.version = "0.0.3"
9
9
  spec.authors = ["dixen"]
10
10
  spec.email = ["dixentw@gmail.com"]
11
11
  spec.description = %q{Plugin that adds whole record to to_s field, json format}
@@ -1,5 +1,5 @@
1
1
  class Fluent::ToSFilter < Fluent::Filter
2
- Fluent::Plugin.register_filter('toJstr', self)
2
+ Fluent::Plugin.register_filter('tojs', self)
3
3
 
4
4
  config_param :field_name, :string, :default => 'to_json'
5
5
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-to_js
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - dixen
@@ -65,7 +65,7 @@ files:
65
65
  - README.md
66
66
  - Rakefile
67
67
  - fluent-plugin-to_s.gemspec
68
- - lib/fluent/plugin/parse_tojstr.rb
68
+ - lib/fluent/plugin/filter_tojs.rb
69
69
  - test/helper.rb
70
70
  - test/plugin/test_out_to_s.rb
71
71
  homepage: https://github.com/dixentw/fluent-plugin-to_s