rails_log_parser 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
  SHA256:
3
- metadata.gz: ea15a1a3ec5a45569f3242ec132c7ad247d545c827cc8583439990095612099e
4
- data.tar.gz: 4ad9958d1b198976eeb78cde4b8527d9402d90cdfe50ee3737de803de7a43cc6
3
+ metadata.gz: 14be05b30152b307fd2bfc5aa398e2381fc3849c130ad21313aa74c1d5e533f2
4
+ data.tar.gz: b8ab4f231d38089960ce3dd8d04451fcf04ef53d94c381abc11eb6c35f874b97
5
5
  SHA512:
6
- metadata.gz: ce42b4516aceb6284d2c51f551cadbb46b1ae53a2cc313a3cec003f423d095db6de3b269cb013b14797e9a5b5949f1051d25ae06a0c12f4a8fa4d9e63c75e3ef
7
- data.tar.gz: edd3514b50cf68188ae011230d73c692695d6abaff9f3146436f58f1b0f39621221bc0ba760be337ad8e2d375438a71de7f367ee53f584564282dc2acbf0d0d5
6
+ metadata.gz: f49c2178c57daa4c470421d617d78460c5ff6fdebf28dc8141a9830655e1a6b6c3984690dce8ab602e70caf432b72e825e713846a46ba74ede5cd3eba1baf447
7
+ data.tar.gz: 21f1c5026a46d19fc6f6577dc3927788108df79b430a1ce6c3549c494e4845b184a4ce1a3ad730e16faf1f95e16e35d73374d91cd546fb9e983322b1d98d649c
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rails_log_parser (0.0.1)
4
+ rails_log_parser (0.0.3)
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.3
46
+
47
+ * Adding `URI::InvalidURIError` as known exceptions
48
+
45
49
  ### 0.0.2
46
50
 
47
51
  * Adding `ActionController::InvalidAuthenticityToken` as known exceptions
@@ -12,7 +12,8 @@ class RailsLogParser::Action
12
12
  'ActiveRecord::RecordNotFound' => :fatal,
13
13
  'ActionController::RoutingError' => :fatal,
14
14
  "Can't verify CSRF token authenticity." => :warn,
15
- "ActionController::InvalidAuthenticityToken" => :fatal,
15
+ 'ActionController::InvalidAuthenticityToken' => :fatal,
16
+ 'URI::InvalidURIError' => :fatal,
16
17
  }.freeze
17
18
 
18
19
  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.2'
5
+ spec.version = '0.0.3'
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.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach