paygate 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -12
  3. data/lib/paygate/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 963fcce432a7eb25241914533cfb84a385ad8722d697919249acf5fca3250455
4
- data.tar.gz: 30085d8c15b97f38de147015ab3c25916517f5afbd594bf1d1d17a30076234ba
3
+ metadata.gz: 02d6c9fddc69dcb54daaaac079bc86f60fe75f3463d5b41b83b22b9d857cdb48
4
+ data.tar.gz: 13d93d585b7b494a98385bc09e48ac6a7d8d11eda032bba0c4d18c83e9b992af
5
5
  SHA512:
6
- metadata.gz: 4292b53ce576616625d23fb4c909454b7795e332f8c2ff394689728371ad2509b8de7b64b5eeb7cf2caabebce7d39c13043c1a928080c58d1de1884cdca13828
7
- data.tar.gz: cb65428191f9fdfb78ca42e8045dcba1538ba66a2ca37ad75f6362a92300fa556a2c0ee881d6f026e0b76404301de282db231ca5faf15500b3a60a61c75d7ff6
6
+ metadata.gz: f166417b483de0b5f8669be1f4631617335aee656928219af28ff38ddd53f4f0bb7f20873ab70f11a943ba633b22acc3c1024a33b817fff583b281e1333e09cf
7
+ data.tar.gz: a7c8a796132ca9450dc6419b0adf4e9bf628a173ebf17324dcf635abfafefed020b2e3c408e96175572319407aab96f44609179e9b4e5d9966b146ffd5107e90
data/README.md CHANGED
@@ -84,21 +84,21 @@ and use them in your `paygate_result` page to display status of the transaction.
84
84
 
85
85
  ## Fields explained
86
86
 
87
- `paygate_id`: a unique ID obtained from PayGate (test value: 10011072130).
88
- `encription_key`: password obtained by PayGate (test: secret).
89
- `reference_number`: this is your reference number for use by your internal systems.
90
- `amount`: transaction amount in cents. e.g. 32.99 is specified as 3299.
91
- `currency`: currency code of the currency the customer is paying in. Refer to [Currency Codes](http://docs.paygate.co.za/#country-codes).
92
- `return_url`: once the transaction is completed, PayWeb will return the customer to a page on your web site. The page the customer must see is specified in this field.
93
- `locale`: the locale code identifies to PayGate the customer’s language, country and any special variant preferences (such as Date/Time format) which may be applied to the user interface. Please contact PayGate support to check if your locale is supported. If the locale passed is not supported, then PayGate will default to the “en” locale.
94
- `country`: Country code of the country the customer is paying from. Refer to [Country Codes](http://docs.paygate.co.za/#country-codes).
95
- `recepient`: if the transaction is approved, PayWeb will email a payment confirmation to this email address – unless this is overridden at a gateway level by using the Payment Confirmation setting. This field remains compulsory but the sending of the confirmation email can be blocked .
96
- `pay_method`: Refer to [PAY_METHOD](http://docs.paygate.co.za/#payment-method-codes).
87
+ - `paygate_id`: a unique ID obtained from PayGate (test value: 10011072130).
88
+ - `encription_key`: password obtained by PayGate (test: secret).
89
+ - `reference_number`: this is your reference number for use by your internal systems.
90
+ - `amount`: transaction amount in cents. e.g. 32.99 is specified as 3299.
91
+ - `currency`: currency code of the currency the customer is paying in. Refer to [Currency Codes](http://docs.paygate.co.za/#country-codes).
92
+ - `return_url`: once the transaction is completed, PayWeb will return the customer to a page on your web site. The page the customer must see is specified in this field.
93
+ - `locale`: the locale code identifies to PayGate the customer’s language, country and any special variant preferences (such as Date/Time format) which may be applied to the user interface. Please contact PayGate support to check if your locale is supported. If the locale passed is not supported, then PayGate will default to the “en” locale.
94
+ - `country`: Country code of the country the customer is paying from. Refer to [Country Codes](http://docs.paygate.co.za/#country-codes).
95
+ - `recepient`: if the transaction is approved, PayWeb will email a payment confirmation to this email address – unless this is overridden at a gateway level by using the Payment Confirmation setting. This field remains compulsory but the sending of the confirmation email can be blocked .
96
+ - `pay_method`: Refer to [PAY_METHOD](http://docs.paygate.co.za/#payment-method-codes).
97
97
 
98
98
  ## Other
99
99
 
100
- You can find official documentation for PayGate PayWeb 3 [here](http://docs.paygate.co.za/).
101
- You can find more about error codes [here](http://docs.paygate.co.za/#error-codes).
100
+ - You can find official documentation for PayGate PayWeb 3 [here](http://docs.paygate.co.za/).
101
+ - You can find more about error codes [here](http://docs.paygate.co.za/#error-codes).
102
102
 
103
103
  ## Contributing
104
104
 
@@ -1,3 +1,3 @@
1
1
  module Paygate
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paygate
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marko Manojlovic