rails_log_parser 0.0.13 → 0.0.14

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: 956620c0619001e7b37a81dc6d29833e299a3c94f95dba614a543c676f2d5caf
4
- data.tar.gz: 70a3a3694cbd9092929269116f11fd65e9136e25a3dfd29754a5a5a86ec26577
3
+ metadata.gz: 1ecf14cd343a96269393660a0f6daa54bfac43cf45c694840400b295c106b145
4
+ data.tar.gz: 8690da0687f22e6ee16ecc1cee247c943fb928e28a973b72e45ff141a3792ff8
5
5
  SHA512:
6
- metadata.gz: 11b66b1ee80038c9c9a717167fea4255687bcec4db10787c35efbccd39984f36c1d57727245eb08ef5d4b8540f92dcbb36c0be3d993f8d2b8df6ff086cb8c887
7
- data.tar.gz: 8c3e58120bfb3cae68d42d7f7593f03266b0f9ac3e0ed56b5ae4dd95a6881c8b51eb426e361aedd2485dbc0d6d2528179a1d227dc6b4ab850f62cc85d9d0088b
6
+ metadata.gz: 0ea42a77488c2151e04ef87a0c8d1c8788a3cb1367e8193a67df696622f3319ebdd9d42aa1213d7c4fac7fb00e0a6906401794e36c3e96644e080a80743c3c89
7
+ data.tar.gz: a43c0c02ce22d35386217c36b7cab9af0cfacde931e6f85931289ab0f890623a6d49b3836695735d7ed4c587efc46708c170052685ffdb1d1a232559c436fe12
data/README.md CHANGED
@@ -49,6 +49,10 @@ print parser.summary(last_minutes: 22) # print summary for the last 22
49
49
 
50
50
  ## Changelog
51
51
 
52
+ ### 0.0.14
53
+
54
+ * Better empty lines handling
55
+
52
56
  ### 0.0.13
53
57
 
54
58
  * Better empty lines handling
@@ -91,7 +91,7 @@ class RailsLogParser::Line
91
91
  end
92
92
 
93
93
  match = line.match(/
94
- \A\[(?<id>[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12})\]\s # [UUID]
94
+ \A\[(?<id>[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12})\]\s? # [UUID]
95
95
  (?<message>.*)
96
96
  \z/x)
97
97
  if match
@@ -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.13'
5
+ spec.version = '0.0.14'
6
6
  spec.authors = ['Georg Limbach']
7
7
  spec.email = ['georg.limbach@lichtbit.com']
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_log_parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Georg Limbach
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-14 00:00:00.000000000 Z
11
+ date: 2023-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: enumerize