trailblazer-core-utils 0.0.4 → 0.0.6

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: af512b40998be4b879e0cf9d98d69281ff32f5744314f6d182876f4018bf7083
4
- data.tar.gz: c09107e6e03086da057c28ec62ca9f3229dd477e2aaf06fae7b559075dade14a
3
+ metadata.gz: 8f6a0c27ef25b32eb3cfcb5c4905fb260b515a3fd2aa9eb6a76bd1fbe90c3c41
4
+ data.tar.gz: 8191e63357fb33c61344bc26a62da2e349cde82271ce3e6c23eec328b0830c0f
5
5
  SHA512:
6
- metadata.gz: ded16b8aa275b3347701b1ba0670cfb6d5340d47c48b3ba2dbde284d6ddbc1379d2fd6f4bc25be6959250926d5737d2ce5daccae68cdf4f12ee3c3b54ff9e5bb
7
- data.tar.gz: 7cf816374b9950a298bdc354688839f0295fc6c051cfef84abd01dfde82887e5c8a4909a7aa1d775ee0929816af46e74403d541e3fa65bd9b6004a5ba7b0bbc0
6
+ metadata.gz: 2872b8a7262797296bb7a69e370102b10c3faf084cc83c8d7e7054a3f4f6a6545442dbfdc45fb4d48c869adaa8a5cdbe806fdbef9ede3fc431b7ccff0143f732
7
+ data.tar.gz: e7aacd505e7c1d279ce17386a7d4549f5e363b391dfefe3e3df0e81ccc628226e1b24140f2e2a1adfece776a5ccd011e9175c0527b08858168db5fd4a74dc46f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [0.0.6]
2
+
3
+ * Introduce `Utils.strip` to remove Object IDs for anonymous objects in strings.
4
+
5
+ ## [0.0.5]
6
+
7
+ * In `Utils.inspect`, limit the regex to one liner hashes.
8
+
1
9
  ## [0.0.4]
2
10
 
3
11
  * Extend `Utils.inspect` so we can feed it strings that may contain hash inspects.
@@ -12,7 +12,7 @@ module Trailblazer
12
12
 
13
13
  module Inspect
14
14
  def self.convert_hash_inspect(hash_inspect)
15
- new_string = hash_inspect.gsub(/([{ ])(\w+): /, '\1:\2=>')
15
+ new_string = hash_inspect.gsub(/({|, )(\w+): /, '\1:\2=>')
16
16
  new_string.gsub(" => ", "=>")
17
17
  end
18
18
  end
@@ -0,0 +1,10 @@
1
+ module Trailblazer
2
+ module Core
3
+ module Utils
4
+ # Remove object IDs for anonymous objects.
5
+ def self.strip(string)
6
+ string.gsub(/0x\w+/, "0x")
7
+ end
8
+ end
9
+ end
10
+ end
@@ -1,7 +1,7 @@
1
1
  module Trailblazer
2
2
  module Core
3
3
  module Utils
4
- VERSION = "0.0.4"
4
+ VERSION = "0.0.6"
5
5
  end
6
6
  end
7
7
  end
@@ -2,6 +2,7 @@ require "forwardable"
2
2
  require "trailblazer/core/utils/convert_operation_test"
3
3
  require "trailblazer/core/utils/symbol_inspect_for"
4
4
  require "trailblazer/core/utils/inspect"
5
+ require "trailblazer/core/utils/strip"
5
6
 
6
7
  module Trailblazer
7
8
  module Core
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trailblazer-core-utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Sutterer
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-11-12 00:00:00.000000000 Z
11
+ date: 2025-03-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email:
@@ -25,6 +25,7 @@ files:
25
25
  - lib/trailblazer/core/utils.rb
26
26
  - lib/trailblazer/core/utils/convert_operation_test.rb
27
27
  - lib/trailblazer/core/utils/inspect.rb
28
+ - lib/trailblazer/core/utils/strip.rb
28
29
  - lib/trailblazer/core/utils/symbol_inspect_for.rb
29
30
  - lib/trailblazer/core/utils/version.rb
30
31
  homepage: https://trailblazer.to