Start writing README
parent
46330f57b0
commit
04edcb8fd6
16
README.md
16
README.md
|
@ -1,8 +1,6 @@
|
||||||
# MoneticoPaiement
|
# MoneticoPaiement
|
||||||
|
|
||||||
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/monetico_paiement`. To experiment with that code, run `bin/console` for an interactive prompt.
|
MoneticoPaiement is a gem to ease credit card payment with [Monetico Paiement](https://www.monetico-paiement.fr/).
|
||||||
|
|
||||||
TODO: Delete this and the text above, and describe your gem
|
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
@ -22,7 +20,17 @@ Or install it yourself as:
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
TODO: Write usage instructions here
|
The EPT can be configured in an initialiser (`config/initializers/monetico_paiement.rb`):
|
||||||
|
|
||||||
|
```ruby
|
||||||
|
MoneticoPaiement.configure do |config|
|
||||||
|
config.hmac_key = "################################"
|
||||||
|
config.ept_number = "######"
|
||||||
|
config.company_code = "########"
|
||||||
|
|
||||||
|
config.env = :test # or :production
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue