fluent-plugin-woothee 0.0.2 → 0.1.0

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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 9b3613e4c7628249b38e3c9df0fc6e6cf04f0327
4
+ data.tar.gz: 4423e9af2140ae82f4b59df149d6385c14a82fb5
5
+ SHA512:
6
+ metadata.gz: 419d0960010fbb59a344b5cd9be8697eb485dac41ea0f0f1e5efd7effa18b11037136a1c2db0b3589e054c311146449263edcdd8f875de96465a9d2356c64df2
7
+ data.tar.gz: 7318a37e5b0037df0cfafe27b739d8a28abbd891ce009a7d75900c1a684cc1ecdbb755160dcf709e66bf0053ef71c4a053d3072adff43c1fd014562cdeabab6c
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
4
+ - 2.0.0
@@ -2,12 +2,13 @@
2
2
 
3
3
  Gem::Specification.new do |gem|
4
4
  gem.name = "fluent-plugin-woothee"
5
- gem.version = "0.0.2"
5
+ gem.version = "0.1.0"
6
6
  gem.authors = ["TAGOMORI Satoshi"]
7
7
  gem.email = ["tagomoris@gmail.com"]
8
8
  gem.description = %q{parsing by Project Woothee. See https://github.com/tagomoris/woothee }
9
9
  gem.summary = %q{Fluentd plugin to parse UserAgent strings}
10
- gem.homepage = "https://github.com/tagomoris/fluent-plugin-woothee"
10
+ gem.homepage = "https://github.com/woothee/fluent-plugin-woothee"
11
+ gem.license = "APLv2"
11
12
 
12
13
  gem.files = `git ls-files`.split($\)
13
14
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
@@ -30,6 +30,11 @@ class Fluent::WootheeOutput < Fluent::Output
30
30
  require 'woothee'
31
31
  end
32
32
 
33
+ # Define `log` method for v0.10.42 or earlier
34
+ unless method_defined?(:log)
35
+ define_method("log") { $log }
36
+ end
37
+
33
38
  def configure(conf)
34
39
  super
35
40
 
metadata CHANGED
@@ -1,72 +1,66 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-woothee
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
5
- prerelease:
4
+ version: 0.1.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - TAGOMORI Satoshi
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-04-08 00:00:00.000000000 Z
11
+ date: 2014-03-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rake
16
15
  requirement: !ruby/object:Gem::Requirement
17
- none: false
18
16
  requirements:
19
- - - ! '>='
17
+ - - ">="
20
18
  - !ruby/object:Gem::Version
21
19
  version: '0'
22
20
  type: :development
23
21
  prerelease: false
24
22
  version_requirements: !ruby/object:Gem::Requirement
25
- none: false
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: '0'
30
27
  - !ruby/object:Gem::Dependency
31
28
  name: fluentd
32
29
  requirement: !ruby/object:Gem::Requirement
33
- none: false
34
30
  requirements:
35
- - - ! '>='
31
+ - - ">="
36
32
  - !ruby/object:Gem::Version
37
33
  version: '0'
38
34
  type: :runtime
39
35
  prerelease: false
40
36
  version_requirements: !ruby/object:Gem::Requirement
41
- none: false
42
37
  requirements:
43
- - - ! '>='
38
+ - - ">="
44
39
  - !ruby/object:Gem::Version
45
40
  version: '0'
46
41
  - !ruby/object:Gem::Dependency
47
42
  name: woothee
48
43
  requirement: !ruby/object:Gem::Requirement
49
- none: false
50
44
  requirements:
51
- - - ! '>='
45
+ - - ">="
52
46
  - !ruby/object:Gem::Version
53
47
  version: 0.2.4
54
48
  type: :runtime
55
49
  prerelease: false
56
50
  version_requirements: !ruby/object:Gem::Requirement
57
- none: false
58
51
  requirements:
59
- - - ! '>='
52
+ - - ">="
60
53
  - !ruby/object:Gem::Version
61
54
  version: 0.2.4
62
- description: ! 'parsing by Project Woothee. See https://github.com/tagomoris/woothee '
55
+ description: 'parsing by Project Woothee. See https://github.com/tagomoris/woothee '
63
56
  email:
64
57
  - tagomoris@gmail.com
65
58
  executables: []
66
59
  extensions: []
67
60
  extra_rdoc_files: []
68
61
  files:
69
- - .gitignore
62
+ - ".gitignore"
63
+ - ".travis.yml"
70
64
  - Gemfile
71
65
  - LICENSE.txt
72
66
  - README.md
@@ -75,29 +69,29 @@ files:
75
69
  - lib/fluent/plugin/out_woothee.rb
76
70
  - test/helper.rb
77
71
  - test/plugin/test_out_woothee.rb
78
- homepage: https://github.com/tagomoris/fluent-plugin-woothee
79
- licenses: []
72
+ homepage: https://github.com/woothee/fluent-plugin-woothee
73
+ licenses:
74
+ - APLv2
75
+ metadata: {}
80
76
  post_install_message:
81
77
  rdoc_options: []
82
78
  require_paths:
83
79
  - lib
84
80
  required_ruby_version: !ruby/object:Gem::Requirement
85
- none: false
86
81
  requirements:
87
- - - ! '>='
82
+ - - ">="
88
83
  - !ruby/object:Gem::Version
89
84
  version: '0'
90
85
  required_rubygems_version: !ruby/object:Gem::Requirement
91
- none: false
92
86
  requirements:
93
- - - ! '>='
87
+ - - ">="
94
88
  - !ruby/object:Gem::Version
95
89
  version: '0'
96
90
  requirements: []
97
91
  rubyforge_project:
98
- rubygems_version: 1.8.23
92
+ rubygems_version: 2.2.2
99
93
  signing_key:
100
- specification_version: 3
94
+ specification_version: 4
101
95
  summary: Fluentd plugin to parse UserAgent strings
102
96
  test_files:
103
97
  - test/helper.rb