wolf_core 0.1.30 → 0.1.32

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: 49f3ef2edeb0bcba802326f94227bfc55b6e5e58cbf30e23bcd056bb3b8ef379
4
- data.tar.gz: 24b7f61bfcd2e986d25951effdc570d999ec9ead56124b12194f409c23dc15eb
3
+ metadata.gz: 9c21a4303476d4effed797e1926039d4f88fefadf7ac2dd954f6f0ef1cf50458
4
+ data.tar.gz: 14f0d39ca739e909a3fb8f09853f04974ef225726735ce863d455927de2a040e
5
5
  SHA512:
6
- metadata.gz: e91b962300ed726555568e4088b6592b6717d08132a2d3fc512210fd043d787290a11840f28fd002a27652ff33b05810beb56ce5aba44c87f047287094d113f6
7
- data.tar.gz: b90a749d5d6c910fa4fd844a9557234d8962a4f9de1547e24614a25041933fcc88e315dca46633701c674d338d74351a6a3884cdfbfb16d6d859d259b9e9e531
6
+ metadata.gz: 77d38e4ca25cba5b0f3b6bfbe9244b84f7e28cd8d6a09d108e0028131781d03aa73e7775672d9d6458c8362311e1c7f52d5bb9640955473161b700666a28ddac
7
+ data.tar.gz: 8ed8f43dc4a619b72ed65714288755165e419df2b70abcdfc289b56d62a8177a2e1cdfa55f22a026bb1a53a0af857ae0e2f4ccb8dea3b700512ca20231df73ba
@@ -11,19 +11,20 @@ module WolfCore
11
11
  }
12
12
 
13
13
  LOCUM_AVAILABILITY_MAP = {
14
- "PT" => "Part Time",
15
- "FT" => "Full Time",
16
- "PFI" => "Not Sure Yet",
17
- "Interim Locum" => "Between Permanent Positions",
18
- "Perm Only" => "Permanent",
14
+ 'PT' => 'Part Time',
15
+ 'FT' => 'Full Time',
16
+ 'PFI' => 'Not Sure Yet',
17
+ 'Interim Locum' => 'Between Permanent Positions',
18
+ 'Perm Only' => 'Permanent',
19
19
  }
20
20
 
21
21
  ORDER_STATUS_MAP = {
22
- "Pending" => "pending",
23
- "On Hold" => "pending",
24
- "Filled" => "pending",
25
- "Open" => "live",
26
- "Closed" => "closed",
22
+ 'Listing Qualification' => 'pending',
23
+ 'Pending' => 'pending',
24
+ 'On Hold' => 'pending',
25
+ 'Filled' => 'pending',
26
+ 'Open' => 'live',
27
+ 'Closed' => 'closed',
27
28
  }
28
29
 
29
30
  def map_provider_type_to_pricing_id(provider_type)
@@ -0,0 +1,15 @@
1
+ module WolfCore
2
+ module LoggingUtils
3
+ def log_object(object)
4
+ case object
5
+ when Hash, OpenStruct
6
+ object = object.to_h if object.instance_of?(OpenStruct)
7
+ puts object.to_json
8
+ when Array
9
+ pp object
10
+ else
11
+ puts object
12
+ end
13
+ end
14
+ end
15
+ end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module WolfCore
4
- VERSION = "0.1.30"
4
+ VERSION = "0.1.32"
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.30
4
+ version: 0.1.32
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-07-23 00:00:00.000000000 Z
11
+ date: 2024-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -73,6 +73,7 @@ files:
73
73
  - lib/wolf_core/infrastructure/lambda_function_operations.rb
74
74
  - lib/wolf_core/utils/async_utils.rb
75
75
  - lib/wolf_core/utils/file_utils.rb
76
+ - lib/wolf_core/utils/logging_utils.rb
76
77
  - lib/wolf_core/utils/result.rb
77
78
  - lib/wolf_core/version.rb
78
79
  homepage: https://github.com/onewolfxyz/wolf_core