No commit activity in last 3 years
No release in over 3 years
Process your payment through Dragonpay API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.15
~> 10.0
~> 3.0
 Project Readme

DragonpayPayment

Dragonpay API payment integration.

Installation

Add this line to your application's Gemfile:

gem 'dragonpay_payment'

And then execute:

$ bundle

Or install it yourself as:

$ gem install dragonpay_payment

Configuration

# config/initializers/dragonpay_payment.rb

DragonpayPayment.configure do |config|
  config.merchant_id = 'your_merchant_id'
  config.secret_key = 'your_secret_key'
end

Usage

  @process_payment = DragonpayPayment::Merchant.new(
    amount: '500.00',
    ccy: 'PHP',
    description: 'Test Payment',
    email: 'testpayment@payment.com'
  )
  
  @process_payment.pay

The pay method will generate the dragonpay url it will not redirect you to the dragonpay website.

Important Note

This gem uses the dragonpay production environment url (https://gw.dragonpay.ph/Pay.aspx) for generating the payment url, I am currently working on the test environment of the dragonpay because as of the moment dragonpay returns an invalid digest error when using test url.

Contributing

Bug reports and pull requests are welcome. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the DragonpayPayment project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.