foobara-util 0.0.8 → 0.0.10

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: f28088a767f0c73ceb7c9bdbe17633935233872900c51bc17a6815e3b2b6e802
4
- data.tar.gz: a477c70c401057348f9c3539ffb26e5927ab3b128b51d2c1bba65c64d1fa7432
3
+ metadata.gz: ffeeb4b338beda21fff61e194d633848e4eb65983aa4ff866c7806a3524a0a33
4
+ data.tar.gz: 02e9918f11b6b6203a8b649b5777ce2ca4c402ea178a6e5d5696ce4015aa6223
5
5
  SHA512:
6
- metadata.gz: b914e2155dcd1b0b4b7dff98555f68cd63b185e6d687b9f6402006b94ab56f572a3322e770f92f163f8ff4dd34e591e0e5e9bb4ec9a75ef7261153f76e7b478d
7
- data.tar.gz: 194304d9e788206cb754450244a9b9de6fdec23bbe49ae5534f12f9718669c02027d9cc0c5bbd42208ab7317e7edc5d01a9929e7a2f8db30d77dd57787737ae3
6
+ metadata.gz: 94ec1bf3e5b2b29b939efe2f516abc0a8ce5d99b57c4d5630db64b822c32c4a2351caf15f7c0ae14d94e71bd212bb9a1434a3a668aca09042e9d9a2a62e2eb59
7
+ data.tar.gz: eefa23f722f81e8704d1bf44ffc7ace2c6c5735c707479d06f9b4de0ea339e76605e2d7c7997fe6a0feb83ce885bdbad47882f16bb968d6e50c9a5834968f88e
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## [0.0.10] - 2025-02-18
2
+
3
+ - Bump Ruby to 3.4.2
4
+ - Make .constantize work with kebab-cased strings
5
+
6
+ ## [0.0.9] - 2025-01-07
7
+
8
+ - Bump Ruby to 3.4.1
9
+
1
10
  ## [0.0.8] - 2024-12-05
2
11
 
3
12
  * Add .print_tree for displaying dependencies/graphs via ASCII art
@@ -59,6 +59,8 @@ module Foobara
59
59
 
60
60
  return "" if string.empty?
61
61
 
62
+ string = string.gsub("-", "_")
63
+
62
64
  retval = ""
63
65
  is_start = true
64
66
 
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foobara-util
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miles Georgi
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-05 00:00:00.000000000 Z
10
+ date: 2025-02-18 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email:
15
13
  - azimux@gmail.com
16
14
  executables: []
@@ -43,7 +41,6 @@ metadata:
43
41
  source_code_uri: https://github.com/foobara/util
44
42
  changelog_uri: https://github.com/foobara/util/blob/main/CHANGELOG.md
45
43
  rubygems_mfa_required: 'true'
46
- post_install_message:
47
44
  rdoc_options: []
48
45
  require_paths:
49
46
  - lib
@@ -51,15 +48,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
51
48
  requirements:
52
49
  - - ">="
53
50
  - !ruby/object:Gem::Version
54
- version: 3.2.2
51
+ version: 3.4.0
55
52
  required_rubygems_version: !ruby/object:Gem::Requirement
56
53
  requirements:
57
54
  - - ">="
58
55
  - !ruby/object:Gem::Version
59
56
  version: '0'
60
57
  requirements: []
61
- rubygems_version: 3.5.23
62
- signing_key:
58
+ rubygems_version: 3.6.3
63
59
  specification_version: 4
64
60
  summary: Utility functions used across various Foobara projects
65
61
  test_files: []