wolf_core 0.1.10 → 0.1.11
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 +4 -4
- data/lib/wolf_core/application/barton/operations.rb +24 -0
- data/lib/wolf_core/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1331aab64ba1c3b2b264faba8f1fc7f3d468ea08221b161069ef942727f40488
|
4
|
+
data.tar.gz: db6db3c47015f0e79aecc77429511020b0d2d0013cd58026530945da81f8b296
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8492c140e1800af35f4bcd669a975748af01cd25d240ae2ad62673f1ca2701414c69ca0c2ac3c8b622795a9ecfabd46d3cbc11e684c552e30b8a0dee7f294ece
|
7
|
+
data.tar.gz: d4c0cbc2d3e7ec658d040192b67e786ae6d0a9ff67cc11362a71c274b399d0e3d6aaec4432df66ecbfe0c67138a4c6e60561035e680208f41cca7436ab3a938a
|
@@ -0,0 +1,24 @@
|
|
1
|
+
module WolfCore
|
2
|
+
module Barton
|
3
|
+
module Operations
|
4
|
+
include WolfCore::ExceptionOperations
|
5
|
+
|
6
|
+
def map_pricing_id(provider_type)
|
7
|
+
case provider_type
|
8
|
+
when 'MD'
|
9
|
+
ENV['MD_PRICING_ID']
|
10
|
+
when 'DO'
|
11
|
+
ENV['DO_PRICING_ID']
|
12
|
+
when 'PA'
|
13
|
+
ENV['PA_PRICING_ID']
|
14
|
+
when 'DMD'
|
15
|
+
ENV['DMD_PRICING_ID']
|
16
|
+
when 'NP'
|
17
|
+
ENV['NP_PRICING_ID']
|
18
|
+
else
|
19
|
+
raise_service_error({ message: "Unknown provider type #{provider_type}" })
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
24
|
+
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.11
|
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-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -47,6 +47,7 @@ extra_rdoc_files: []
|
|
47
47
|
files:
|
48
48
|
- lib/wolf_core.rb
|
49
49
|
- lib/wolf_core/application/application_service.rb
|
50
|
+
- lib/wolf_core/application/barton/operations.rb
|
50
51
|
- lib/wolf_core/application/exception_operations.rb
|
51
52
|
- lib/wolf_core/application/fkm_operations.rb
|
52
53
|
- lib/wolf_core/application/http_operations.rb
|