wolf_core 1.0.47 → 1.0.48

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: 11514fa6f426a60b869744a7219e38ccd4e66e78a460a1be1ecd865dbffc0843
4
- data.tar.gz: 3b8efd6137839a2fee6f21c1bbc43c8eb01f5df2c8a86d22493548d371a5a190
3
+ metadata.gz: 688d6ee6dd8934b902403a1db8d2cebece5c394cc2e878e6189b81ccb137189a
4
+ data.tar.gz: '09c55ea06ee8bf5cb8efee607ae076825648af14291e4007e2c9ea7fa050ecf3'
5
5
  SHA512:
6
- metadata.gz: 8cdbf67d8a870c60beafa12a8e70debd066e09300e824053811391deaf670b117e79463256395d290fbb8e28f1a1e57826844604185f316c311a4660cafd9079
7
- data.tar.gz: 7aafdc9ed87a8d32a59d430e214d6c721a60f51b71f754c7da60d32162d701b18f9e4a3f05cc7eb7843f766a95678b084049ad1bb6189918d072afb6f72f3d2e
6
+ metadata.gz: 223c44544b1f902dfdfb0e69d800b9fe7be1d68d6c76875162313fd9fd2bd2c3ad99b4ad3247888a0966196f404da4915efb1f515cdc0b8060563dbcb77a745e
7
+ data.tar.gz: 6dcfddc2a7246a92512513cb92bd6e25376aff158d503322cf5cd3a93879f54904eb3586a6b7fd354227fc2bbe31b3c79e2b6450dcd3ba717ad35a5418c10c83
@@ -15,10 +15,16 @@ module WolfCore
15
15
  'burnett/clients/export' => 'BurnettExportClient',
16
16
  }
17
17
 
18
- def route_event_request(path:, body:)
19
- environment = ENV['ENVIRONMENT'] || 'development'
18
+ def route_event_request(path:, body:, environment:, domain_url: nil)
19
+ environment ||= 'development'
20
+ environment = environment.downcase
20
21
  deployable_envs = ['production', 'staging', 'testing']
21
- if deployable_envs.include?(environment.downcase)
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
+ if deployable_envs.include?(environment)
22
28
  function_name = "#{PATH_TO_FUNCTION_NAME_MAPPING[path]}#{environment.titleize}"
23
29
  raise_service_error("Function name not found for path: #{path}") if function_name.blank?
24
30
 
@@ -27,7 +33,7 @@ module WolfCore
27
33
  payload: body,
28
34
  )
29
35
  else
30
- domain_url = ENV['CURRENT_SAM_URL']
36
+ domain_url ||= ENV['CURRENT_SAM_URL']
31
37
  async_http_post(url: "#{domain_url}/#{path}", body: body)
32
38
  end
33
39
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "1.0.47"
4
+ VERSION = "1.0.48"
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.47
4
+ version: 1.0.48
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-04 00:00:00.000000000 Z
11
+ date: 2024-12-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty