SkrillPayments
Installation
Add this line to your application's Gemfile:
gem 'skrill_payments'
And then execute:
$ bundle
Or install it yourself as:
$ gem install skrill_payments
Create a configuration file for Skrill Payments.
$ touch config/initializers/skrill_payments.rb
With following content.
SkrillPayments.configure do |config|
config.email = 'michal.macejko1@gmail.com'
config.password = '2347237842346234623476276'
# your password in MD5
end
Usage
SEND MONEY USING AN HTTPS REQUEST
Put this code into your Payment class.
include SkrillPayment
Your payment class must contain all attributes/methods which is required for transfer money.
[:amount, :currency, :recipient_email, :subject, :note, :reference_id]
# :reference_id is optional attribute
For example:
class Payment
include SkrillPayment
def amount
price + fees
end
def currency
bank.czech? ? 'CZK' : 'ENG'
end
def recipient_email
client.email
end
def subject
'My super subject'
end
def note
'Money for your service'
end
def reference_id
id
end
end
And in your controller just put the following code:
def pay_for_service
payment = Payment.find(params[:id])
begin
payment.pay!
rescue SkrillPaymentsException => e
# do stuff
end
redirect_to payments_path
end
SEND MONEY FROM DIFFERENT SKRILL ACCOUNT
If you want to send money from different Skrill account (different email and password than from the config). Just add following params in pay! method.
def pay_for_service
payment = Payment.find(params[:id])
begin
payment.pay!(email: 'account_2@macejko.sk', password: 'sadnuasndasdasd')
rescue SkrillPaymentsException => e
# do stuff
end
redirect_to payments_path
end
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request