gloo 3.10.0 → 3.10.1

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: e433f2baf8be33d331b3bd9274885bfd2d4d5f82d43c82b56c9de1be39f49a65
4
- data.tar.gz: 3bff8acad38706bc7938461cccb0ea0b6e242cdc7ce75560c3ca0c4ada06cb63
3
+ metadata.gz: ff9890a2e53190076ecfa0fc7116612280f794b0a638c1446bddd73b841f707a
4
+ data.tar.gz: 9ed2be8e8f613abfa2123135bb31b1882cacd5a60339d005546bed1dd0129ec9
5
5
  SHA512:
6
- metadata.gz: 4738b2649a53f3a78eb52cf3c6805156eaeb5c4c005a1f4779aabd3b37a92ba23d49c8ab80f072514df816eeeced82c89d271077d1dc7234a1a62e097a819606
7
- data.tar.gz: 37cb224b189049b0827652c4317352cac2ace041908b18ae075b200b9519ba5060e74ec0dba0ae6108f0edc1c52da52c299c49fff09af05cc6877623523d0555
6
+ metadata.gz: 7171f61e6a519150b22edc3ef4fd0a1c569a70c4aa561dff52f54b3259f90036bf8b6f5f58b4751693e73c72c49da2f3862246dcef1249bfa129b0bdb7fde08f
7
+ data.tar.gz: 6452827017abc68acb8318dcf783c1210bae5096ec65650b7068248bc758c086b75426e3f26fee35eb278189a62d25b5a7261faabdca9606bace5f26223ba713
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.10.0
1
+ 3.10.1
data/lib/VERSION_NOTES CHANGED
@@ -1,3 +1,7 @@
1
+ 3.10.1 - 2025.03.11
2
+ Fix issue with Date parsing.
3
+
4
+
1
5
  3.10.0 - 2025.03.09
2
6
  - Fixes bug with page parameters
3
7
  - Fixes bug with date-times in SQL
@@ -13,6 +13,11 @@ module Gloo
13
13
  # Convert the given string value to date.
14
14
  #
15
15
  def convert( value )
16
+ #
17
+ # TODO: figure out why I needed to add this.
18
+ # The trailing ' am' was causing Chronic to fail.
19
+ #
20
+ value = value[0..-3] if value.end_with?( ' am' )
16
21
  return Chronic.parse( value )
17
22
  end
18
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gloo
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.0
4
+ version: 3.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Crane
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-03-09 00:00:00.000000000 Z
11
+ date: 2025-03-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler