wolf_core 1.0.48 → 1.0.50

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: 688d6ee6dd8934b902403a1db8d2cebece5c394cc2e878e6189b81ccb137189a
4
- data.tar.gz: '09c55ea06ee8bf5cb8efee607ae076825648af14291e4007e2c9ea7fa050ecf3'
3
+ metadata.gz: c3381b62135ffb1ee1e6473708cb7c39b6e9cb56852d0082db844dfe10d928ec
4
+ data.tar.gz: 03aecbe82ba0f63683d2ec1ca91c49727c6e95be89f340882dcfc3ef9bab8989
5
5
  SHA512:
6
- metadata.gz: 223c44544b1f902dfdfb0e69d800b9fe7be1d68d6c76875162313fd9fd2bd2c3ad99b4ad3247888a0966196f404da4915efb1f515cdc0b8060563dbcb77a745e
7
- data.tar.gz: 6dcfddc2a7246a92512513cb92bd6e25376aff158d503322cf5cd3a93879f54904eb3586a6b7fd354227fc2bbe31b3c79e2b6450dcd3ba717ad35a5418c10c83
6
+ metadata.gz: cee10bbe65f246ab589cdde283e33ebea74afeda0a3f246610672e69fda7d0c11f82ca1f34ebb4088c4ed3a7e21fc7d6a0f2017e2fc041ea1603b855c478eb06
7
+ data.tar.gz: 32f90a9cb33c6fdec0fc4847338aff5a8d83e735881a046296cb495fe31da2a9097cbf9e7e453439cb55c4d6fa73bd84fcb1835c1745ae8927d923b7979df1ce
@@ -11,7 +11,6 @@ module WolfCore
11
11
  'burnett/orders/export' => 'BurnettExportOrder',
12
12
  'burnett/order_applications/export' => 'BurnettExportOrderApplication',
13
13
  'burnett/clients/import' => 'BurnettImportClient',
14
- 'burnett/clients/bulk_import' => 'BurnettBulkImportClients',
15
14
  'burnett/clients/export' => 'BurnettExportClient',
16
15
  }
17
16
 
@@ -19,11 +18,6 @@ module WolfCore
19
18
  environment ||= 'development'
20
19
  environment = environment.downcase
21
20
  deployable_envs = ['production', 'staging', 'testing']
22
- puts '-------------------------------------------------------'
23
- puts "environment = #{environment}"
24
- puts "deployable_envs = #{deployable_envs}"
25
- puts "deployable_envs.include?(environment) = #{deployable_envs.include?(environment)}"
26
- puts '-------------------------------------------------------'
27
21
  if deployable_envs.include?(environment)
28
22
  function_name = "#{PATH_TO_FUNCTION_NAME_MAPPING[path]}#{environment.titleize}"
29
23
  raise_service_error("Function name not found for path: #{path}") if function_name.blank?
@@ -31,5 +31,13 @@ module WolfCore
31
31
 
32
32
  input || {}
33
33
  end
34
+
35
+ def valid_url?(url)
36
+ return false unless url.instance_of?(String)
37
+ uri = URI.parse(url)
38
+ uri.is_a?(URI::HTTP) || uri.is_a?(URI::HTTPS) && !uri.host.nil?
39
+ rescue URI::InvalidURIError
40
+ false
41
+ end
34
42
  end
35
43
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.48"
4
+ VERSION = "1.0.50"
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: 1.0.48
4
+ version: 1.0.50
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-12-11 00:00:00.000000000 Z
11
+ date: 2024-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty