sisow 0.9.2 → 0.9.3

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/.gitignore CHANGED
@@ -5,3 +5,4 @@ pkg/*
5
5
  spec/sisow.yml
6
6
  coverage/
7
7
  spec/vcr_cassettes
8
+ .rvmrc
data/README.rdoc CHANGED
@@ -58,7 +58,7 @@ Setting up a payment looks like this:
58
58
  :issuer_id => '99', # the issuer id from the previous step
59
59
  :description => 'Acme Inc. payment', # description of this payment
60
60
  :amount => 1299, # amount in Euro in cents
61
- :entrance_code => 'foobar-foxtrot', # internal verification code of your choice
61
+ :entrance_code => 'foobarfoxtrot', # internal verification code of your choice
62
62
  :return_url => 'http://example.com', # where the user is sent after the payment
63
63
  :cancel_url => 'http://example.com', # where the user is sent when he cancels the payment
64
64
  :callback_url => 'http://example.com', # where a failed (not cancelled) payment will be reported
@@ -7,7 +7,7 @@ module Sisow
7
7
  end
8
8
 
9
9
  def params
10
- default_params
10
+ {}
11
11
  end
12
12
 
13
13
  def clean(response)
@@ -25,7 +25,6 @@ module Sisow
25
25
  def default_params
26
26
  {
27
27
  :merchantid => Sisow.configuration.merchant_id,
28
- :merchantkey => Sisow.configuration.merchant_key,
29
28
  :test => Sisow.configuration.test_mode_enabled?? test_mode_param : nil
30
29
  }
31
30
  end
data/lib/sisow/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Sisow
2
- VERSION = "0.9.2"
2
+ VERSION = "0.9.3"
3
3
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: sisow
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.9.2
5
+ version: 0.9.3
6
6
  platform: ruby
7
7
  authors:
8
8
  - Marcel de Graaf
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-03-13 00:00:00 +01:00
13
+ date: 2012-03-16 00:00:00 +01:00
14
14
  default_executable:
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency