fluent-plugin-path2tag 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: af47259dc7725ab1689f7172d7f622d985d5d80a
4
- data.tar.gz: e5882fe3866285af7240875d1273954b871404a0
3
+ metadata.gz: 0e1d9b67029b9aa8766e87237ba322f53b0286f7
4
+ data.tar.gz: b7cbfd0f1750059b7fa22ce6d51a510b383a3033
5
5
  SHA512:
6
- metadata.gz: f8e7698a5dd1b900fac3446e5245cbb4614b66321f2e37ab3b3e970fa0e3ede03c7be281bfd5ca7bc3db569cf400c1b4d94558ab3d3d42574651a866c06f12d5
7
- data.tar.gz: 89983b0c613be02ef3b073cacc3b8dd20ddacc93a72c57462efb8acb34341977b27fc5af7b127042d97dc8a2f2798aed89b1764de6e4522ebca7b54b399876ca
6
+ metadata.gz: ec6c901461ebf2b050e41fc223ced617845f16ffcb0188bed49cfeb1f672ae5d7dfd8437a980d051ebb9a332e1e350f2a96c716b24b87c1d636ad4d97ac955d6
7
+ data.tar.gz: 22d1ea01d89dfb5d44412e84cf5ed999e7868bd085c026607daa272eb9e8fc372c5ca83feeab43dd038e079e79732140230b5e9fd82d5b13bc7ef8383d96077e
@@ -1,10 +1,11 @@
1
1
  # coding: utf-8
2
- #lib = File.expand_path("../lib", __FILE__)
3
- #$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- $:.push File.expand_path("../lib", __FILE__)
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'fluent/plugin/path2tag/version'
5
+
5
6
  Gem::Specification.new do |spec|
6
7
  spec.name = "fluent-plugin-path2tag"
7
- spec.version = "0.0.2"
8
+ spec.version = Fluent::Plugin::Path2tag::VERSION
8
9
  spec.authors = ["Shota Kuwahara"]
9
10
  spec.email = ["shota.kuwahara@skuwa229.com"]
10
11
 
@@ -1,7 +1,7 @@
1
1
  module Fluent
2
2
  module Plugin
3
3
  module Path2tag
4
- VERSION = "0.0.2"
4
+ VERSION = "0.0.3"
5
5
  end
6
6
  end
7
7
  end
data/test/helper.rb CHANGED
@@ -22,7 +22,7 @@ unless ENV.has_key?('VERBOSE')
22
22
  $log = nulllogger
23
23
  end
24
24
 
25
- require 'fluent/plugin/path2tag'
25
+ require 'fluent/plugin/out_path2tag'
26
26
 
27
27
  class Test::Unit::TestCase
28
28
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-path2tag
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
  - Shota Kuwahara
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-23 00:00:00.000000000 Z
11
+ date: 2017-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit
@@ -75,7 +75,7 @@ files:
75
75
  - bin/console
76
76
  - bin/setup
77
77
  - fluent-plugin-path2tag.gemspec
78
- - lib/fluent/plugin/path2tag.rb
78
+ - lib/fluent/plugin/out_path2tag.rb
79
79
  - lib/fluent/plugin/path2tag/version.rb
80
80
  - spec/fluent/plugin/path2tag_spec.rb
81
81
  - spec/spec_helper.rb
File without changes