trust_pay_rails 0.1.0 → 0.1.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bcbb1d0f7e318548f2839f8cbeb9618d138c2b5f
4
- data.tar.gz: 8d19b3935f8de119068e6e8f8bcdb2212607c3f8
3
+ metadata.gz: 80f14098929275ae5840c7e736940d5f345179a9
4
+ data.tar.gz: 72736edede7c795a1ce7199896ec4935cba9daf9
5
5
  SHA512:
6
- metadata.gz: 373acf59ec1430047bbf6e1740d8198f1f20f659a3093f6a5ec12ba2efd1cf19a32e45a41366003bf4d761ab05e73281c93bdbaecaf1481ffcc8a4e812c4f149
7
- data.tar.gz: 139aa1beb5aeda7d5fd646559037229a84d683ea575dc4021789eb0841fbb269efe6583d3c66f79122540af8f638c6067bb0bdb4a97b3ed785bb157ec8382aab
6
+ metadata.gz: 62a2550bb0a46ce55193331cdd980d144addd182156d683c9afb27f7b3f2fd95aa5de0d1761e499089c3322ba33bb9175fdeabaa043b936b81770ad28c018edf
7
+ data.tar.gz: 4e080aec7028a143f86604609b78a13b6abd3bb0eb45a5d575c9fa150500a08ceea58329e4d9eaa51f026097b8924276085f846d882119a8dc7ecb8fff8ef78d
data/README.md CHANGED
@@ -1,4 +1,5 @@
1
- # TrustPayRails
1
+ # TrustPayRails
2
+ [![Build Status](https://travis-ci.org/Learn2Codesk/trust_pay_rails.svg?branch=master)](https://travis-ci.org/Learn2Codesk/trust_pay_rails)
2
3
 
3
4
  A simple implementation of the [Trustpay](http://www.trustpay.eu/)
4
5
  payment platform to integrate into Rails apps.
@@ -26,7 +27,7 @@ variables:
26
27
 
27
28
  ``` bash
28
29
  TRUSTPAY_ENV - [testing|production|fake_bank_url] select an environment
29
- TRUSTPAY_KEY - your identifier received after registering with Trustpay
30
+ TRUSTPAY_AID - your identifier received after registering with Trustpay
30
31
  TRUSTPAY_KEY - your key received after registering with TrustPay
31
32
  ```
32
33
 
@@ -72,6 +73,8 @@ To generate the TrustPay notification urls use the provided generator:
72
73
  rails g trust_pay_rails:routes
73
74
  ```
74
75
 
76
+ Now go and fill in the generated TrustPayRails controller with your
77
+ custom application callback logic.
75
78
 
76
79
  ## Development
77
80
 
@@ -14,7 +14,7 @@ module TrustPayRails
14
14
  def self.bank_transfer_url
15
15
  case @environment
16
16
  when :testing
17
- 'https://test.trustpay.eu/mapi/pay.aspx'
17
+ 'https://ib.test.trustpay.eu/mapi/pay.aspx'
18
18
  when :production
19
19
  'https://ib.trustpay.eu/mapi/pay.aspx'
20
20
  when :fake
@@ -1,3 +1,3 @@
1
1
  module TrustPayRails
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: trust_pay_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michal Olah
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-04-19 00:00:00.000000000 Z
11
+ date: 2015-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
125
125
  version: '0'
126
126
  requirements: []
127
127
  rubyforge_project:
128
- rubygems_version: 2.4.5
128
+ rubygems_version: 2.4.6
129
129
  signing_key:
130
130
  specification_version: 4
131
131
  summary: A Ruby client to the TrustPay payment platform.