fluent-plugin-grep 0.0.3 → 0.1.1

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: 7499ce546c2a6ac26dc827f92d09132e7c31d3c6
4
- data.tar.gz: 28fc3c637fa0827a1d89c446b657c21a28bf787c
3
+ metadata.gz: e0613931c1a98ce10f1cbbdc97a712b158b38e13
4
+ data.tar.gz: 4fc868cced83edb4fe14cb0960894178c2162eca
5
5
  SHA512:
6
- metadata.gz: db775624601c8d159c1c9fd20844b2cc6439057e973a7adf6bb29229e4d3a9bcb25371bccf9b9d7a8fbba7344a347edcf7f89b80ca0c31041cb10ef5822a6f79
7
- data.tar.gz: d873314ee6ff2b8689de0680961d2171cd65a22a6313de4d42554fff998d7fa1c814c150fce94f3a9f33e6f8ead0ffdced273e7a226a5113465a703a871430e3
6
+ metadata.gz: 15fc714a1b73e0628de80e8b4059db41ef990c7a0db68d0334ee00ab849c9dee3902d4ac356f6ed872ffc97cb0d9755b8c2a618fb50281d571c4512cb69ab40d
7
+ data.tar.gz: 5d926b83217838e8aa06894618b4871992573c763ee33b3e9f1cddd21984522900eb8b4cf42757fa65c7161fee174ae5dde70c507588e9f2b8552283dfb9daa6
data/.gitignore CHANGED
@@ -10,3 +10,5 @@ doc/*
10
10
  tmp/*
11
11
  coverage
12
12
  .yardoc
13
+ .ruby-version
14
+ pkg/*
@@ -1,8 +1,20 @@
1
+ ## 0.1.1 (2013/11/02)
2
+
3
+ Changes:
4
+
5
+ - Revert String#scrub because `string-scrub` gem is only for >= ruby 2.0.
6
+
7
+ ## 0.1.0 (2013/11/02)
8
+
9
+ Changes:
10
+
11
+ - Use String#scrub
12
+
1
13
  ## 0.0.3 (2013/05/14)
2
14
 
3
15
  Features:
4
16
 
5
- - Support to grep non-string jsonable values as a string
17
+ - Support to grep non-string jsonable values (such as integer, array) by #to_s.
6
18
 
7
19
  Changes:
8
20
 
data/README.md CHANGED
@@ -4,7 +4,7 @@ Fluentd plugin to grep messages.
4
4
 
5
5
  ## Configuration
6
6
 
7
- <match syslog.**>
7
+ <match foo.bar.**>
8
8
  type grep
9
9
  input_key message
10
10
  regexp WARN
@@ -3,12 +3,13 @@ $:.push File.expand_path("../lib", __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "fluent-plugin-grep"
6
- s.version = "0.0.3"
6
+ s.version = "0.1.1"
7
7
  s.authors = ["Naotoshi SEO"]
8
8
  s.email = ["sonots@gmail.com"]
9
9
  s.homepage = "https://github.com/sonots/fluent-plugin-grep"
10
10
  s.summary = "fluentd plugin to grep messages"
11
11
  s.description = s.summary
12
+ s.licenses = ["MIT"]
12
13
 
13
14
  s.rubyforge_project = "fluent-plugin-grep"
14
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-grep
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi SEO
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-05-14 00:00:00.000000000 Z
11
+ date: 2013-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fluentd
@@ -102,7 +102,8 @@ files:
102
102
  - spec/out_grep_spec.rb
103
103
  - spec/spec_helper.rb
104
104
  homepage: https://github.com/sonots/fluent-plugin-grep
105
- licenses: []
105
+ licenses:
106
+ - MIT
106
107
  metadata: {}
107
108
  post_install_message:
108
109
  rdoc_options: []
@@ -120,7 +121,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
120
121
  version: '0'
121
122
  requirements: []
122
123
  rubyforge_project: fluent-plugin-grep
123
- rubygems_version: 2.0.0
124
+ rubygems_version: 2.0.3
124
125
  signing_key:
125
126
  specification_version: 4
126
127
  summary: fluentd plugin to grep messages