payanyway 1.2.5 → 1.2.6
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/README.md +3 -1
- data/lib/payanyway/version.rb +1 -1
- data/{app → spec/internal/app}/controllers/payanyway_controller.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b8d168299fbf897d3a5e2585a1a0cdbbe804615e
|
|
4
|
+
data.tar.gz: e2cf55fc61bd4a8a9111e3a2e567e2d2f0b7f3b6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba18cd70d7d09f60da128fb5a9d807130b2a6dd0c8a447acefc98283c7e2b2cd2c8c0a6021d997bd9b233c6019e0e3c3416e3123c0c4fee4e35dfe2db9df045e
|
|
7
|
+
data.tar.gz: a15d8e5a1a27bf58fff36fb52bca3fc54966235c1ee8f4c4b008428faa9b2e11c5d489fb5b795d309d3122547a3935f4190e3c0d713d241815b43fd031ab0919
|
data/README.md
CHANGED
|
@@ -47,7 +47,9 @@ end
|
|
|
47
47
|
Создайте `app/controllers/payanyway_controller.rb` со следующим кодом:
|
|
48
48
|
|
|
49
49
|
```ruby
|
|
50
|
-
class PayanywayController
|
|
50
|
+
class PayanywayController < ApplicationController
|
|
51
|
+
include Payanyway::Controller
|
|
52
|
+
|
|
51
53
|
def success_implementation(order_id)
|
|
52
54
|
# вызывается при отправке шлюзом пользователя на Success URL.
|
|
53
55
|
#
|
data/lib/payanyway/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: payanyway
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ssnikolay
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rails
|
|
@@ -164,7 +164,6 @@ files:
|
|
|
164
164
|
- LICENSE.txt
|
|
165
165
|
- README.md
|
|
166
166
|
- Rakefile
|
|
167
|
-
- app/controllers/payanyway_controller.rb
|
|
168
167
|
- config/routes.rb
|
|
169
168
|
- lib/payanyway.rb
|
|
170
169
|
- lib/payanyway/controller.rb
|
|
@@ -183,6 +182,7 @@ files:
|
|
|
183
182
|
- spec/config/routes_spec.rb
|
|
184
183
|
- spec/controllers/payanyway_controller_spec.rb
|
|
185
184
|
- spec/internal/app/controllers/application_controller.rb
|
|
185
|
+
- spec/internal/app/controllers/payanyway_controller.rb
|
|
186
186
|
- spec/internal/config/payanyway.yml
|
|
187
187
|
- spec/lib/payanyway/factories/payment_url_factory_spec.rb
|
|
188
188
|
- spec/lib/payanyway/gateway_spec.rb
|
|
@@ -220,6 +220,7 @@ test_files:
|
|
|
220
220
|
- spec/config/routes_spec.rb
|
|
221
221
|
- spec/controllers/payanyway_controller_spec.rb
|
|
222
222
|
- spec/internal/app/controllers/application_controller.rb
|
|
223
|
+
- spec/internal/app/controllers/payanyway_controller.rb
|
|
223
224
|
- spec/internal/config/payanyway.yml
|
|
224
225
|
- spec/lib/payanyway/factories/payment_url_factory_spec.rb
|
|
225
226
|
- spec/lib/payanyway/gateway_spec.rb
|