fluent-plugin-extract-json 0.1.0 → 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.
- data/README.md +3 -0
- data/fluent-plugin-extract-json.gemspec +2 -1
- metadata +9 -2
data/README.md
CHANGED
@@ -38,3 +38,6 @@ $ bundle exec rake
|
|
38
38
|
## Contributing
|
39
39
|
|
40
40
|
Bug reports and pull requests are welcome on GitHub at https://github.com/neguse/fluent-plugin-extract-json.
|
41
|
+
|
42
|
+
## License
|
43
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
@@ -4,12 +4,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "fluent-plugin-extract-json"
|
7
|
-
spec.version = "0.1.
|
7
|
+
spec.version = "0.1.1"
|
8
8
|
spec.authors = ["neguse"]
|
9
9
|
spec.email = ["negcee@gmail.com"]
|
10
10
|
|
11
11
|
spec.summary = %q{Fluent::ExtractJsonFilter is a fluentd plugin extracts single JSON object from record.}
|
12
12
|
spec.homepage = "https://github.com/neguse/fluent-plugin-extract-json"
|
13
|
+
spec.license = "MIT"
|
13
14
|
|
14
15
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
15
16
|
f.match(%r{^(test|spec|features)/})
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-extract-json
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -108,7 +108,8 @@ files:
|
|
108
108
|
- fluent-plugin-extract-json.gemspec
|
109
109
|
- lib/fluent/plugin/filter_extract_json.rb
|
110
110
|
homepage: https://github.com/neguse/fluent-plugin-extract-json
|
111
|
-
licenses:
|
111
|
+
licenses:
|
112
|
+
- MIT
|
112
113
|
post_install_message:
|
113
114
|
rdoc_options: []
|
114
115
|
require_paths:
|
@@ -119,12 +120,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
119
120
|
- - ! '>='
|
120
121
|
- !ruby/object:Gem::Version
|
121
122
|
version: '0'
|
123
|
+
segments:
|
124
|
+
- 0
|
125
|
+
hash: 1029603914408545837
|
122
126
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
123
127
|
none: false
|
124
128
|
requirements:
|
125
129
|
- - ! '>='
|
126
130
|
- !ruby/object:Gem::Version
|
127
131
|
version: '0'
|
132
|
+
segments:
|
133
|
+
- 0
|
134
|
+
hash: 1029603914408545837
|
128
135
|
requirements: []
|
129
136
|
rubyforge_project:
|
130
137
|
rubygems_version: 1.8.23.2
|