fluent-plugin-detect-exceptions-with-error 0.0.2 → 0.0.3

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: 8842b701aa76b2cb86d738f2b32d425c85ad9683
4
- data.tar.gz: 0e385b65a63e7131c320070ab4a34c8df9afb841
3
+ metadata.gz: f6eef8a54dee0039897ddbb33232c97f12930406
4
+ data.tar.gz: 247f1b217698f7b05749d001157017842f8fdd26
5
5
  SHA512:
6
- metadata.gz: e1aed1b0fa78c2ad4e4cfdb6927d7b229f7395beab3a5f0883c8e853097b41892fed1889c3a50b2b54087febd60102d5f493c6b36865d4aae1bec038eafb50a8
7
- data.tar.gz: 68350756533519f6abd4b7635ef76ce180ac58ffd0f350573bb53e5743048ea46234b9cdd4bac7f7bc2841d81e38a19796e9064982bef294f20fdda83d6029e3
6
+ metadata.gz: 12dee9deef7951d2f3c7a278f21be47fc792d97eb9bd3a5d9b772a3d3dd9eeb856a053366c0b2c976f72a1a5bf7447247a2a12e322ac69e3f7d62e9fae8bbd9a
7
+ data.tar.gz: 439aefe2b3566aae146d75fd476375b150f343064f2971342cab9fa59bedb60c328181bdefea8c6322f784768e974b10c18ac225c37d856fe0e533a827c964c4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fluent-plugin-detect-exceptions-with-error (0.0.2)
4
+ fluent-plugin-detect-exceptions-with-error (0.0.2b)
5
5
  fluentd (~> 0.10)
6
6
 
7
7
  GEM
data/Rakefile CHANGED
@@ -26,7 +26,7 @@ end
26
26
  # Building the gem will use the local file mode, so ensure it's world-readable.
27
27
  desc 'Check plugin file permissions'
28
28
  task :check_perms do
29
- plugin = 'lib/fluent/plugin/out_detect_exceptions.rb'
29
+ plugin = 'lib/fluent/plugin/out_detect_exceptions_with_error.rb'
30
30
  mode = File.stat(plugin).mode & 0o777
31
31
  raise "Unexpected mode #{mode.to_s(8)} for #{plugin}" unless
32
32
  mode & 0o444 == 0o444
@@ -6,7 +6,7 @@ eos
6
6
  gem.summary = \
7
7
  'fluentd output plugin for combining error messages and stack traces as multi-line JSON logs'
8
8
  gem.license = 'Apache-2.0'
9
- gem.version = '0.0.2'
9
+ gem.version = '0.0.3'
10
10
  gem.authors = ['Paul Boocock']
11
11
  gem.required_ruby_version = Gem::Requirement.new('>= 2.0')
12
12
 
data/test/helper.rb CHANGED
@@ -43,4 +43,4 @@ unless ENV.key?('VERBOSE')
43
43
  $log = nulllogger # rubocop:disable Style/GlobalVars
44
44
  end
45
45
 
46
- require 'fluent/plugin/out_detect_exceptions'
46
+ require 'fluent/plugin/out_detect_exceptions_with_error'
@@ -13,7 +13,7 @@
13
13
  # limitations under the License.
14
14
 
15
15
  require_relative '../helper'
16
- require 'fluent/plugin/out_detect_exceptions'
16
+ require 'fluent/plugin/out_detect_exceptions_with_error'
17
17
 
18
18
  class DetectExceptionsOutputTest < Test::Unit::TestCase
19
19
  def setup
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluent-plugin-detect-exceptions-with-error
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
  - Paul Boocock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-22 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: fluentd
@@ -74,11 +74,14 @@ extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
76
  - CONTRIBUTING
77
+ - fluent-plugin-detect-exceptions-with-error-0.0.2.gem
78
+ - fluent-plugin-detect-exceptions-with-error-0.0.2a.gem
79
+ - fluent-plugin-detect-exceptions-with-error-0.0.2b.gem
77
80
  - fluent-plugin-detect-exceptions-with-error.gemspec
78
81
  - Gemfile
79
82
  - Gemfile.lock
80
83
  - lib/fluent/plugin/exception_detector.rb
81
- - lib/fluent/plugin/out_detect_exceptions.rb
84
+ - lib/fluent/plugin/out_detect_exceptions_with_error.rb
82
85
  - LICENSE
83
86
  - Rakefile
84
87
  - README.rdoc