ideal 0.2.0
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.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/.travis.yml +10 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +24 -0
- data/LICENSE +22 -0
- data/README.textile +204 -0
- data/Rakefile +19 -0
- data/ideal.gemspec +28 -0
- data/init.rb +1 -0
- data/lib/ideal/acquirers.rb +23 -0
- data/lib/ideal/gateway.rb +425 -0
- data/lib/ideal/response.rb +250 -0
- data/lib/ideal/version.rb +5 -0
- data/lib/ideal.rb +12 -0
- data/test/fixtures.yml +12 -0
- data/test/gateway_test.rb +766 -0
- data/test/helper.rb +36 -0
- data/test/remote_test.rb +203 -0
- metadata +132 -0
data/test/fixtures.yml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
# You can also paste the contents of the key and certificates here,
|
2
|
+
# if you want to do so remove the “_file” part of the keys.
|
3
|
+
default:
|
4
|
+
acquirer: ing
|
5
|
+
merchant_id: ID
|
6
|
+
passphrase: PRIVATE KEY PASSPHRASE
|
7
|
+
private_key_file: |--
|
8
|
+
PASTE THE PATH TO YOUR PEM FILE HERE
|
9
|
+
private_certificate_file: |--
|
10
|
+
PASTE THE PATH TO YOUR CERTIFICATE FILE HERE
|
11
|
+
ideal_certificate_file: |--
|
12
|
+
PASTE THE PATH TO THE iDEAL CERTIFICATE FILE HERE
|