processing_kz 0.1.43 → 0.1.44
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/.gitignore +1 -0
- data/lib/processing_kz/start_transaction.rb +1 -2
- data/lib/processing_kz/version.rb +1 -1
- data/spec/CNPMerchantWebService.wsdl +867 -0
- data/spec/CNPMerchantWebService_test.wsdl +1163 -0
- data/spec/transaction_spec.rb +1 -1
- metadata +7 -3
data/spec/transaction_spec.rb
CHANGED
@@ -5,7 +5,7 @@ feature 'Transaction' do
|
|
5
5
|
before do
|
6
6
|
|
7
7
|
ProcessingKz.config do |config|
|
8
|
-
config.wsdl = '
|
8
|
+
config.wsdl = 'spec/CNPMerchantWebService_test.wsdl'
|
9
9
|
config.host = 'https://test.processing.kz/CNPMerchantWebServices/services/CNPMerchantWebService'
|
10
10
|
config.merchant_id = '333000000000000'
|
11
11
|
config.language_code = 'en'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: processing_kz
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.44
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pavel Tkachenko
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-12-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -123,6 +123,8 @@ files:
|
|
123
123
|
- lib/processing_kz/transaction.rb
|
124
124
|
- lib/processing_kz/version.rb
|
125
125
|
- processing_kz.gemspec
|
126
|
+
- spec/CNPMerchantWebService.wsdl
|
127
|
+
- spec/CNPMerchantWebService_test.wsdl
|
126
128
|
- spec/config_spec.rb
|
127
129
|
- spec/goods_item_spec.rb
|
128
130
|
- spec/spec_helper.rb
|
@@ -147,11 +149,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
149
|
version: '0'
|
148
150
|
requirements: []
|
149
151
|
rubyforge_project:
|
150
|
-
rubygems_version: 2.
|
152
|
+
rubygems_version: 2.6.14
|
151
153
|
signing_key:
|
152
154
|
specification_version: 4
|
153
155
|
summary: Integrate with processing.kz easily
|
154
156
|
test_files:
|
157
|
+
- spec/CNPMerchantWebService.wsdl
|
158
|
+
- spec/CNPMerchantWebService_test.wsdl
|
155
159
|
- spec/config_spec.rb
|
156
160
|
- spec/goods_item_spec.rb
|
157
161
|
- spec/spec_helper.rb
|