mastercard_locations 1.0.0 → 1.0.2

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
  SHA1:
3
- metadata.gz: 2085e65dc83441116ed1017f481be279382c1936
4
- data.tar.gz: ca9e56038355d5a080278b5e3dc11308ade43db3
3
+ metadata.gz: 4ba40d17be235edcef8036de90689ff4b2ab49d9
4
+ data.tar.gz: 778087f008eabd7f991a75eb089e41b2cb776196
5
5
  SHA512:
6
- metadata.gz: 549e4bb57f1834176471fb07c45a14e1564151f2dc958e5a678dbb7850422fd2116aabe1d2952f658ea76c94113a643fb75f45e61663ec8e658cbfa9dfc5f2e4
7
- data.tar.gz: 54f920d4cee952dd9b0d7e372948777022ec0adac27a5b844502f0407d0f75db09a01c27649bbb3359e859dda322a46c9598a437dbe57c8fbff490a2f8beea79
6
+ metadata.gz: 6dc67290998de06321887f4d3ccd5806033b0300f77e331d6d0856b2431c63e2c7e24015ac8164f3879f13f633c7b836f58a286694b0ef1f6275a24fe50bde5e
7
+ data.tar.gz: c2390aea99ea106abf76659eff51e263aff778100561c463bcf558cd8f553360cf3b8fbe98ec5dcba83262f50ecc46d225f420e200ff4ce9e25df314d9eae5dd
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class ATMCountries < BaseObject
34
+ class ATMCountries < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/atms/v1/country"
46
- end
38
+ @__store = {
39
+ '35f04067-74f5-407c-9fb3-84faad39fbee' => OperationConfig.new("/atms/v1/country", "query", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type ATMCountries by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return ATMCountries object representing the response.
93
68
  #
94
69
 
95
- obj = ATMCountries.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("35f04067-74f5-407c-9fb3-84faad39fbee",ATMCountries.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class ATMCountrySubdivisions < BaseObject
34
+ class ATMCountrySubdivisions < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/atms/v1/countrysubdivision"
46
- end
38
+ @__store = {
39
+ '57d60e5b-34c6-4cd1-8729-31a5f39419f2' => OperationConfig.new("/atms/v1/countrysubdivision", "query", [], ["Country"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["Country"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type ATMCountrySubdivisions by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return ATMCountrySubdivisions object representing the response.
93
68
  #
94
69
 
95
- obj = ATMCountrySubdivisions.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("57d60e5b-34c6-4cd1-8729-31a5f39419f2",ATMCountrySubdivisions.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class ATMLocations < BaseObject
34
+ class ATMLocations < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/atms/v1/atm"
46
- end
38
+ @__store = {
39
+ '2b717647-246e-4f57-bc89-08c6aec69356' => OperationConfig.new("/atms/v1/atm", "query", [], ["PageOffset","PageLength","AddressLine1","AddressLine2","City","CountrySubdivision","PostalCode","Country","Latitude","Longitude","DistanceUnit","Radius","SupportEMV","InternationalMaestroAccepted"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["PageOffset","PageLength","AddressLine1","AddressLine2","City","CountrySubdivision","PostalCode","Country","Latitude","Longitude","DistanceUnit","Radius","SupportEMV","InternationalMaestroAccepted"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type ATMLocations by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return ATMLocations object representing the response.
93
68
  #
94
69
 
95
- obj = ATMLocations.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("2b717647-246e-4f57-bc89-08c6aec69356",ATMLocations.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class MerchantCategories < BaseObject
34
+ class MerchantCategories < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/merchants/v1/category"
46
- end
38
+ @__store = {
39
+ 'e1c232d8-2f50-403e-a4d4-90d6ea673735' => OperationConfig.new("/merchants/v1/category", "query", [], []),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return []
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type MerchantCategories by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return MerchantCategories object representing the response.
93
68
  #
94
69
 
95
- obj = MerchantCategories.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("e1c232d8-2f50-403e-a4d4-90d6ea673735",MerchantCategories.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class MerchantCountries < BaseObject
34
+ class MerchantCountries < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/merchants/v1/country"
46
- end
38
+ @__store = {
39
+ '765d6cfc-6f51-42b1-9e39-ba1be7d92d79' => OperationConfig.new("/merchants/v1/country", "query", [], ["details"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["details"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type MerchantCountries by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return MerchantCountries object representing the response.
93
68
  #
94
69
 
95
- obj = MerchantCountries.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("765d6cfc-6f51-42b1-9e39-ba1be7d92d79",MerchantCountries.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class MerchantCountrySubdivisions < BaseObject
34
+ class MerchantCountrySubdivisions < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/merchants/v1/countrysubdivision"
46
- end
38
+ @__store = {
39
+ 'e3f69e91-3876-47b9-ae48-1ab6b7c631aa' => OperationConfig.new("/merchants/v1/countrysubdivision", "query", [], ["details","country"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["details","country"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type MerchantCountrySubdivisions by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return MerchantCountrySubdivisions object representing the response.
93
68
  #
94
69
 
95
- obj = MerchantCountrySubdivisions.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("e3f69e91-3876-47b9-ae48-1ab6b7c631aa",MerchantCountrySubdivisions.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -31,60 +31,35 @@ require "mastercard/core/model"
31
31
  module MasterCard
32
32
  module API
33
33
  module Locations
34
- include MasterCard::Core::Model
35
- class MerchantLocations < BaseObject
34
+ class MerchantLocations < MasterCard::Core::Model::BaseObject
35
+ include MasterCard::Core::Model
36
36
  #
37
37
 
38
- def getResourcePath(action)
39
- #Returns the resource path based on the action
40
- #@return str
41
-
42
- action = action.upcase
43
-
44
- if action == "QUERY"
45
- return "/merchants/v1/merchant"
46
- end
38
+ @__store = {
39
+ '49cebd93-8a51-47ad-a3fd-2bafe6aac734' => OperationConfig.new("/merchants/v1/merchant", "query", [], ["Details","PageOffset","PageLength","Category","AddressLine1","AddressLine2","City","CountrySubdivision","PostalCode","Country","Latitude","Longitude","DistanceUnit","Radius","OfferMerchantID"]),
47
40
 
48
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
41
+ }
49
42
 
50
- end
43
+ protected
51
44
 
52
- def getHeaderParams(action)
53
- #Returns a list containing header params
54
- #@return list
55
- action = action.upcase
56
-
57
- if action == "QUERY"
58
- return []
59
- end
60
-
61
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
62
- end
63
-
64
- def getQueryParams(action)
65
- #Returns a list containing query params
66
- #@return list
67
- action = action.upcase
68
-
69
- if action == "QUERY"
70
- return ["Details","PageOffset","PageLength","Category","AddressLine1","AddressLine2","City","CountrySubdivision","PostalCode","Country","Latitude","Longitude","DistanceUnit","Radius","OfferMerchantID"]
45
+ def self.getOperationConfig(uuid)
46
+ if @__store.key?(uuid)
47
+ return @__store[uuid]
71
48
  end
72
-
73
- raise StandardError.new("Invalid action supplied: #{action.to_s}")
49
+ raise NotImplementedError.new("Invalid operationUUID supplied:"+ uuid)
74
50
  end
75
51
 
76
- def self.getApiVersion
77
- return "1.0.0"
52
+ def self.getOperationMetadata()
53
+ return OperationMetadata.new(SDKConfig.getVersion(), SDKConfig.getHost())
78
54
  end
79
55
 
80
-
81
-
82
-
83
-
84
-
85
-
86
-
87
-
56
+ public
57
+
58
+
59
+
60
+
61
+
62
+
88
63
  def self.query(criteria)
89
64
  #
90
65
  #Query objects of type MerchantLocations by id and optional criteria
@@ -92,12 +67,9 @@ module MasterCard
92
67
  #@return MerchantLocations object representing the response.
93
68
  #
94
69
 
95
- obj = MerchantLocations.new(criteria)
96
- return self.queryObject(obj)
70
+ return self.execute("49cebd93-8a51-47ad-a3fd-2bafe6aac734",MerchantLocations.new(criteria))
97
71
  end
98
72
 
99
-
100
-
101
73
  end
102
74
  end
103
75
  end
@@ -0,0 +1,50 @@
1
+ #
2
+ # Copyright (c) 2016 MasterCard International Incorporated
3
+ # All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification, are
6
+ # permitted provided that the following conditions are met:
7
+ #
8
+ # Redistributions of source code must retain the above copyright notice, this list of
9
+ # conditions and the following disclaimer.
10
+ # Redistributions in binary form must reproduce the above copyright notice, this list of
11
+ # conditions and the following disclaimer in the documentation and/or other materials
12
+ # provided with the distribution.
13
+ # Neither the name of the MasterCard International Incorporated nor the names of its
14
+ # contributors may be used to endorse or promote products derived from this software
15
+ # without specific prior written permission.
16
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
17
+ # EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
+ # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
19
+ # SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20
+ # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
21
+ # TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22
+ # OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
23
+ # IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
24
+ # IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25
+ # SUCH DAMAGE.
26
+ #
27
+ module MasterCard
28
+ module API
29
+ module Locations
30
+ class SDKConfig
31
+
32
+ private
33
+ @@host = nil
34
+
35
+ public
36
+ def self.setHost(host)
37
+ @@host = host
38
+ end
39
+
40
+ def self.getHost()
41
+ return @@host
42
+ end
43
+
44
+ def self.getVersion()
45
+ return "1.0.2"
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
@@ -1,4 +1,5 @@
1
1
  require 'mastercard_api_core'
2
+ require 'mastercard/api/locations/skdconfig'
2
3
  require 'mastercard/api/locations/atmcountrysubdivisions'
3
4
  require 'mastercard/api/locations/atmcountries'
4
5
  require 'mastercard/api/locations/merchantcountrysubdivisions'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mastercard_locations
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - MasterCard Worldwide
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-10 00:00:00.000000000 Z
11
+ date: 2016-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: mastercard_api_core
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.1.0
19
+ version: 1.2.0
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 1.1.0
22
+ version: 1.2.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - "~>"
28
28
  - !ruby/object:Gem::Version
29
- version: 1.1.0
29
+ version: 1.2.0
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 1.1.0
32
+ version: 1.2.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: ci_reporter_minitest
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -58,6 +58,7 @@ files:
58
58
  - lib/mastercard/api/locations/merchantcountries.rb
59
59
  - lib/mastercard/api/locations/merchantcountrysubdivisions.rb
60
60
  - lib/mastercard/api/locations/merchantlocations.rb
61
+ - lib/mastercard/api/locations/skdconfig.rb
61
62
  - lib/mastercard_locations.rb
62
63
  homepage: https://developer.mastercard.com
63
64
  licenses: