README.md in workarea-forter-1.2.3 vs README.md in workarea-forter-1.2.4
- old
+ new
@@ -18,10 +18,28 @@
+ Gift cards
+ Store credit
Payment types not in this list will still function but are not eligible for fraud protection.
+Getting Started
+--------------------------------------------------------------------------------
+
+Add the gem to your application's Gemfile:
+
+```ruby
+# ...
+gem 'workarea-forter'
+# ...
+```
+
+Update your application's bundle.
+
+```bash
+cd path/to/application
+bundle
+```
+
Configuration
--------------------------------------------------------------------------------
Add the secret key to your secrets file:
```
@@ -41,10 +59,16 @@
Workarea.config.forter.api_version = "2.4"
```
If no API version is configured the default of **2.2** will be used.
+Setting a configuration value for ```credit_card_gateway_name``` value will improve the decision accuracy. This is the name of the credit card processor used by the host application.
+
+```ruby
+ Workarea.config.forter.credit_card_gateway_name = "Stripe"
+```
+
Implementation Notes
--------------------------------------------------------------------------------
**Verifcation Data**
Forter relies on verification data returned from the credit processor when validating credit card transactions. This data can vary by credit card processor.
@@ -62,52 +86,14 @@
```
**Rolling Back Fraud Transactions**
Credit card authorizations are voided when a transaction is deemed to be fraudulent. The void action relies on the #cancel! method implemented on each tenders authorization class. It is very important to implement and test this method when creating a new payment type.
-
-Getting Started
+Workarea Commerce Documentation
--------------------------------------------------------------------------------
-This gem contains a rails engine that must be mounted onto a host Rails application.
+See [https://developer.workarea.com](https://developer.workarea.com) for Workarea Commerce documentation.
-To access Workarea gems and source code, you must be an employee of WebLinc or a licensed retailer or partner.
-
-Workarea gems are hosted privately at https://gems.weblinc.com/.
-You must have individual or team credentials to install gems from this server. Add your gems server credentials to Bundler:
-
- bundle config gems.weblinc.com my_username:my_password
-
-Or set the appropriate environment variable in a shell startup file:
-
- export BUNDLE_GEMS__WEBLINC__COM='my_username:my_password'
-
-Then add the gem to your application's Gemfile specifying the source:
-
- # ...
- gem 'workarea-forter', source: 'https://gems.weblinc.com'
- # ...
-
-Or use a source block:
-
- # ...
- source 'https://gems.weblinc.com' do
- gem 'workarea-forter'
- end
- # ...
-
-Update your application's bundle.
-
- cd path/to/application
- bundle
-
-Workarea Platform Documentation
+License
--------------------------------------------------------------------------------
-See [http://developer.weblinc.com](http://developer.weblinc.com) for Workarea platform documentation.
-
-Copyright & Licensing
---------------------------------------------------------------------------------
-
-Copyright WebLinc 2018. All rights reserved.
-
-For licensing, contact sales@workarea.com.
+Workarea Forter is released under the [Business Software License](LICENSE)