wolf_core 0.1.14 → 0.1.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/wolf_core/application/barton/mappings.rb +18 -1
- data/lib/wolf_core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 608584e93f4fcf6b8a92a497045dff3b823901701b2bf366d3bff33dfbf84395
|
4
|
+
data.tar.gz: 3384c492d6a916cb07d2dabab569c2f022598afb51bebbf9ff91b3fc6fea128d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1fd8a35299fe06c2c54bade541155bb6a7de6b7149be86886a97e789eb1d8048b1853ee9b85fd42d5fe1cb2fe8701c1d2d5d24165af2e57b36d659d8341a8f7c
|
7
|
+
data.tar.gz: 0353c3b9625ed1555bac67970977e98ca3639bddbdc3a18a6cbc5cbc53b378c3bc4e457b3e7aadac3af20c4e8649540a31d12a14e701375bfa45a6f02e41075a
|
@@ -3,7 +3,7 @@ module WolfCore
|
|
3
3
|
module Mappings
|
4
4
|
include WolfCore::ExceptionOperations
|
5
5
|
|
6
|
-
def
|
6
|
+
def map_provider_type_to_pricing_id(provider_type)
|
7
7
|
case provider_type
|
8
8
|
when 'MD'
|
9
9
|
ENV['MD_PRICING_ID']
|
@@ -19,6 +19,23 @@ module WolfCore
|
|
19
19
|
raise_service_error({ message: "Unknown provider type #{provider_type}" })
|
20
20
|
end
|
21
21
|
end
|
22
|
+
|
23
|
+
def map_pricing_id_to_provider_type(pricing_id)
|
24
|
+
case pricing_id.to_s
|
25
|
+
when ENV['MD_PRICING_ID']
|
26
|
+
'MD'
|
27
|
+
when ENV['DO_PRICING_ID']
|
28
|
+
'DO'
|
29
|
+
when ENV['PA_PRICING_ID']
|
30
|
+
'PA'
|
31
|
+
when ENV['DMD_PRICING_ID']
|
32
|
+
'DMD'
|
33
|
+
when ENV['NP_PRICING_ID']
|
34
|
+
'NP'
|
35
|
+
else
|
36
|
+
raise_service_error({ message: "Unknown provider type #{provider_type}" })
|
37
|
+
end
|
38
|
+
end
|
22
39
|
end
|
23
40
|
end
|
24
41
|
end
|
data/lib/wolf_core/version.rb
CHANGED
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.
|
4
|
+
version: 0.1.15
|
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-
|
11
|
+
date: 2024-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|