README.rdoc in active_merchant_ogone-0.1.2 vs README.rdoc in active_merchant_ogone-0.2.0

- old
+ new

@@ -16,20 +16,23 @@ === As a gem To install ActiveMerchantOgone in your rails app you can just do: - config.gem 'simonmenke-active_merchant_ogone', :lib => 'active_merchant_ogone', :source => 'http://gems.github.com' + config.gem 'active_merchant_ogone' == Configuration As Ogone works with in and out signatures, you will have to set these as constants in your configuration file. OGONE_ACCOUNT = 'account_name' Ogone.setup do |c| - c.outbound_signature = '094598439859385938958398494' # Item 3.2 of the technical information - c.inbound_signature = '094598439859385938958398494' # Item 4.4 of the technical information + c.outbound_signature = '094598439859385938958398494' # You can find this under "Data and origin verification" tab + c.inbound_signature = '094598439859385938958398494' # You can find this under "Data and origin verification" tab end + +Make sure that Ogone is set to "Each parameter followed by the pass phrase." as hashed value (under "Global security parameters"). +If you don't see this setting, then you're probably already in that mode. == Example Usage Once you've configured the Ogone settings you need to set up a leaving page with in your view: