rails_log_parser 0.0.4 → 0.0.5

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
  SHA256:
3
- metadata.gz: 587c6ce2164707314caa439dbf465b895661df0e3d08de7ed3b10e0dcb9859a0
4
- data.tar.gz: c4679547c0518a154aadf33ab33cc4cbac86abf15baec01767f975d4e7c48fd2
3
+ metadata.gz: 562cdf65348bb6f1406b061e9fffdbf7798483a717e4d41f870fca74f79f7a22
4
+ data.tar.gz: 40f42a3a731a3dc3cc2273fe7c092fb164db8d71bda905ee2aca63c4f277178c
5
5
  SHA512:
6
- metadata.gz: 1f27b7ed6feb6677e0c70c05ac437c768823cfe7ba1daa967e26027e65b0810f3e391b55dc19bcf88a0590d5000c46d6178195f17946c05bff4fabed934be6a8
7
- data.tar.gz: 69d6e3b2398d018236f6d5a5ec660011a9dc5b0c321b7ad5a0d8cec5a28c4a75f94306129ec2e909ff7a02ad0b36664b92aba9628c0c6fdb600cf3594c15f17b
6
+ metadata.gz: 6f8972ae1e268299f844f7a087106b044af77f7aa244f91962af3732173f59fa8ff813284f8ffcc4750b51d578f7eb94bef7039046ca48b81ffd26d20dfeffe1
7
+ data.tar.gz: 5c9e1c42a92b2540f5e90a4914d7a395685edf44dc5288f7c68399fff52b08214f5425a1941dbb3986789021b33f92ab2d5e7f277a7fc327a4b3079267c96739
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.3)
4
+ rails_log_parser (0.0.5)
5
5
  enumerize (~> 2.4)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -42,6 +42,10 @@ puts parser.actions.select(&:fatal?).map(&:headline)
42
42
 
43
43
  ## Changelog
44
44
 
45
+ ### 0.0.5
46
+
47
+ * Removing `URI::InvalidURIError` as known exceptions
48
+
45
49
  ### 0.0.4
46
50
 
47
51
  * Handle stacktrace of fatals too
@@ -13,7 +13,6 @@ class RailsLogParser::Action
13
13
  'ActionController::RoutingError' => :fatal,
14
14
  "Can't verify CSRF token authenticity." => :warn,
15
15
  'ActionController::InvalidAuthenticityToken' => :fatal,
16
- 'URI::InvalidURIError' => :fatal,
17
16
  }.freeze
18
17
 
19
18
  extend Enumerize
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'rails_log_parser'
5
- spec.version = '0.0.4'
5
+ spec.version = '0.0.5'
6
6
  spec.authors = ['Georg Limbach']
7
7
  spec.email = ['georg.limbach@lichtbit.com']
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_log_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach