Skip to content

techlegends/skrill_payments

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

Skrill Payments GEM

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%