fluent-plugin-filter_where 1.0.0 → 1.0.1

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: 14fee05a0ddb942780d1f9b4722d99549206183f
4
- data.tar.gz: 040111b31bb0b6b9f56f85efc29ddbe9153b25e0
3
+ metadata.gz: 72f1c27433b1df5e239750bb6cb245439f8ad860
4
+ data.tar.gz: 87831d270a3c55207fae546fe20fb46d484fdb8e
5
5
  SHA512:
6
- metadata.gz: 30106ab7026afa2f66d0248309f51cae62a22d1c16fec769a2db98d46ebdb69315dd8d170a3ecaa22bf9eed3946fdd8c64baecb360b6ca7a720a553c5e026dd8
7
- data.tar.gz: 911625bfdcf3351b780957639f70db66ab32ca273e5ca0cc0e014ec8d33f76a6223e0150e032cc1f2bb84b4bca3905eba3fe58f71a09f401fd2d77ca7a00ea20
6
+ metadata.gz: ca8830bf8f2418674ca5777fab1dd4f44fc4655e63221d822093a9e9f29d9b50b98740176e8a7d0375aa98333095b055324e1660626b0172c16c4a4f3e579d0b
7
+ data.tar.gz: b425a6b2fc96b0a3acd7b1dc1ebc355996862ff9d0420b3f1329484829c5218dec25a6a99087fd4b97d74fc620aae610df1b96e05ff3a58c0e8e04569c99aec6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 1.0.1 (2017-05-23)
2
+
3
+ Fixes:
4
+
5
+ * Fix support of v0.12
6
+
1
7
  ## 1.0.0
2
8
 
3
9
  First release
data/README.md CHANGED
@@ -59,7 +59,7 @@ Not supported yet
59
59
 
60
60
  ### Identifier Literal
61
61
 
62
- Characters matching with a regular expression `[a-zA-Z_][a-zA-z0-9_]*` such as `foobar`, and characters surrounded by `"` such as `"foo-bar"`, `"foo.bar"`, and `"foo\"bar"` are considred as an identifier literal, that is, embulk's column name.
62
+ Characters matching with a regular expression `[a-zA-Z_][a-zA-z0-9_]*` such as `foobar`, and characters surrounded by `"` such as `"foo-bar"`, `"foo.bar"`, and `"foo\"bar"` are considred as an identifier literal, that is, fluentd's record key name.
63
63
 
64
64
  ## Operators
65
65
 
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.name = "fluent-plugin-filter_where"
6
- gem.version = "1.0.0"
6
+ gem.version = "1.0.1"
7
7
  gem.authors = ["Naotoshi Seo"]
8
8
  gem.email = "sonots@gmail.com"
9
9
  gem.homepage = "https://github.com/sonots/fluent-plugin-filter_where"
@@ -1,7 +1,7 @@
1
1
  require_relative 'core'
2
2
 
3
3
  module Fluent
4
- class FilterWhere < Filter
4
+ class PluginFilterWhere < Filter
5
5
  Fluent::Plugin.register_filter('where', self)
6
6
 
7
7
  include ::Fluent::FilterWhere::Core
data/test/helper.rb CHANGED
@@ -93,6 +93,6 @@ else # <= v0.12
93
93
  end
94
94
 
95
95
  def create_driver(conf, syntax: :v1, default_tag: 'tag')
96
- FilterWhereTestDriver.new(Fluent::Plugin::FilterWhere, default_tag).configure(conf, syntax: syntax)
96
+ FilterWhereTestDriver.new(Fluent::PluginFilterWhere, default_tag).configure(conf, syntax: syntax)
97
97
  end
98
98
  end
@@ -2,14 +2,8 @@ require_relative 'helper'
2
2
 
3
3
  class WhereParserTest < Test::Unit::TestCase
4
4
  class << self
5
- def systemputs(cmd)
6
- puts cmd
7
- raise unless system cmd
8
- end
9
-
10
5
  def startup
11
- systemputs "racc #{ROOT}/lib/fluent/plugin/filter_where/parser.racc -o #{ROOT}/lib/fluent/plugin/filter_where/parser.tab.rb"
12
- systemputs "rex #{ROOT}/lib/fluent/plugin/filter_where/parser.rex -o #{ROOT}/lib/fluent/plugin/filter_where/parser.rex.rb"
6
+ system "rake compile"
13
7
  require 'fluent/plugin/filter_where/parser.tab'
14
8
  end
15
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-filter_where
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo