truenorth 0.1.2 → 0.1.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: 12c44289ec6c12de5f8262c64c09d6fa0880ffbad055a652a746730bd67870d5
4
- data.tar.gz: 2cac3facaf4f7d30bfefb26fddf82961ade02d2793ddfd9794ddbbbc1200c523
3
+ metadata.gz: 0ee83a05ef3a22b7999efef252ce29ce52ba068981c1721d88fc21261f1eaf3d
4
+ data.tar.gz: b0d33e82c57e05316dffcc5d594af9534910607a4ef9a5f92b60794e12c1fac8
5
5
  SHA512:
6
- metadata.gz: ccd4397aeb191711b34979df7a952572d5840cdaf6d8966359bd08fc3e8dcc1e42f3a1b35c880913ff718bbbb678705091eaf3188a93fc5145bcad0578e6f908
7
- data.tar.gz: dc6948684f2077bb93934f38e682b0dfc20b213277eb9d3d0858d68964a149f8c7261b7f5b1ff5c31bd9cc1326daf5b2c13401e56c407afa508650608219f46b
6
+ metadata.gz: 14d8712a564c367e18a82a2be9e08f6fc048fc9500828d0d546cf7dbee8cfea95983d95daf0e7e95d41b8d3fd0debc41c1eaabfc39456ffe8cfb36d3669b548e
7
+ data.tar.gz: 435cf30e94d69a0dd635a62f91d724d482c32123a61f7d0924cbf00fb204124ef8f922be29083483b50228f1cec7d9d9ab3f72d8d5f5f49c3afab9ac5e964a01
@@ -349,8 +349,9 @@ module Truenorth
349
349
  cell1 = text_parts[1]
350
350
 
351
351
  # Extract activity/event type and details
352
- # Format: "Activities (Court 2 | Squash)" or "Events (Event Name | Category)"
353
- activity_match = cell1.match(/(Activities|Events)\s+\(([^)]+)\)/)
352
+ # Format: "Activities (Court 2 | Squash)" or "Events (Event Name (time) | Category)"
353
+ # Use a greedy match that stops before the date pattern
354
+ activity_match = cell1.match(/(Activities|Events)\s+\((.+?)\)\s*\d{2}\/\d{2}\/\d{4}/)
354
355
  activity = nil
355
356
  court = nil
356
357
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Truenorth
4
- VERSION = '0.1.2'
4
+ VERSION = '0.1.3'
5
5
  end
data/truenorth.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'truenorth'
5
- spec.version = '0.1.2'
5
+ spec.version = '0.1.3'
6
6
  spec.authors = ['usiegj00']
7
7
  spec.email = ['112138+usiegj00@users.noreply.github.com']
8
8
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: truenorth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - usiegj00