This gem is a client for the LemonWay API.
IMPORTANT : This gem is still in development and cannot be used in production at the moment.
First, you need to sign up and own a Lemonway account.
Add this line to your application's Gemfile:
gem 'lemonway_ruby'
And then execute:
$ bundle
Or install it yourself as:
$ gem install lemonway_ruby
There are 3 required paremeters => login / password / company
There are 2 optionals parameters => sandbox / language
If you work with Rails :
# config/initializers/lemonway_ruby.rb
lemon_way_configuration = {
login: ENV['LEMONWAY_LOGIN'],
password: ENV['LEMONWAY_PASSWORD'],
company: ENV['LEMONWAY_COMPANY'],
society_wallet_id: ENV['LEMONWAY_SOCIETY_WALLET_ID']
}
lemon_way_configuration[:sandbox] = true unless Rails.env.production?
LemonWay.configuration = lemon_way_configuration
Lemonway needs to know the IP and User-Agent of the request.
This gem provides a middleware: LemonWay::Middleware
which add this informations for each requests.
If you work with Rails, this middleware is already added and you have nothing to do.
Otherwise, you will have to add this middleware by yourself.
For information, every request with the gem will trigger a LemonWay::LemonWayError
if the request is not satisfied.
You can rescue it like that :
def get_lemon_way_wallet
LemonWay::Wallet.get(id: 'UnknownId')
rescue LemonWay::LemonWayError => e
# Do what you want
end
This module allows you to manage all your wallets:
- Wallet creation
- Wallet details modification
- Send KYC documents to Lemon Way
- Check wallet and KYC document status that have changed since a given date
- Check wallet details and balance
- Check balances that have changed since a given date
- Get the list of all transactions made on a wallet
Details of the Wallet module.
This module allows you credit a wallet with the following means of payment:
- By card
Details of the MoneyIn module.
This module allows you to manage form payment:
- Create a payment form
- Retrieve a payment form
- Disable a payment form
Details of the Form module.
This module allows you to prepare/debit a wallet to credit a bank account:
- Register an IBAN
- Transfer fund
- Get details on a transfer
Details of the MoneyOut module.
This module allows you to transfer fund from a Wallet to another Wallet
- Send payment from a wallet to another wallet
- Get details on wallet to wallet transfer
Details of the P2P module.
The gem is available as open source under the terms of the MIT License.