wolf_core 0.1.64 → 0.1.66

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3425c723ebf4313a3b8447441c1d6628959860b2d7fb52711405e29fb6f9b392
4
- data.tar.gz: c7da4afbb6e20e359aa94b15ef2d5a605e89a55f33d053588d0cc7971e5fa712
3
+ metadata.gz: 4151db7dda1b7de6a797283720f1abdd5931114f83ebbc878eddfd43746f1e64
4
+ data.tar.gz: f02536c95fb0b91559d2fe8db5c2c412d61935c84107afadcc455a88782ed74a
5
5
  SHA512:
6
- metadata.gz: 15733af5d621220bb169dab5a89f796f31fbaf967b94d14879e112e56398dceb0108eedb604a1f7cc5c100d41acbbc6f801d3174ee549735a43491d964746725
7
- data.tar.gz: 8fa76bc6faad234e3977614f313fb95ee83f0ebc9836b454ca98c2dd3965be84799a67836a046bd376e3102ab247da016332631744101f66eca9669befd4c417
6
+ metadata.gz: a4b76718a23d7beb421bdd2cdc8a9f1321b878df00990df835c0b1d0dc5916919568076737e27c64472d551b68624fc2ad70edcbbf80cbbeb5b89e6f8091518a
7
+ data.tar.gz: 8cb9412a0cf087c1f7aad8edd50d04932e3faa943a451e4c866c359e2c260ee28c54bb5378dfa31aa60091d1626b50764a57255e716c2f864b86c3f04f3195f0
@@ -0,0 +1,7 @@
1
+ module WolfCore
2
+ module ArrayUtils
3
+ def first_or_self(input)
4
+ input.is_a?(Array) ? input.first : input
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,7 @@
1
+ module WolfCore
2
+ module StringUtils
3
+ def camelcase_to_spaces(str)
4
+ str.gsub(/([A-Z])/, ' \1').strip.downcase.capitalize
5
+ end
6
+ end
7
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.64"
4
+ VERSION = "0.1.66"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wolf_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.64
4
+ version: 0.1.66
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Roncallo
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-14 00:00:00.000000000 Z
11
+ date: 2024-08-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -72,10 +72,12 @@ files:
72
72
  - lib/wolf_core/infrastructure/http_operations.rb
73
73
  - lib/wolf_core/infrastructure/lambda_function_data_source.rb
74
74
  - lib/wolf_core/infrastructure/lambda_function_operations.rb
75
+ - lib/wolf_core/utils/array_utils.rb
75
76
  - lib/wolf_core/utils/async_utils.rb
76
77
  - lib/wolf_core/utils/file_utils.rb
77
78
  - lib/wolf_core/utils/logging_utils.rb
78
79
  - lib/wolf_core/utils/result.rb
80
+ - lib/wolf_core/utils/string_utils.rb
79
81
  - lib/wolf_core/version.rb
80
82
  homepage: https://github.com/onewolfxyz/wolf_core
81
83
  licenses: []