Project

dsk_rb

0.0
The project is in a healthy, maintained state
A Ruby wrapper for DSK Bank's REST API that provides a simple interface for managing banking operations.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.24

Runtime

 Project Readme

DskRb

🚧 UNDER DEVELOPMENT 🚧

Ruby client for the DSK Bank API.

A Ruby wrapper for DSK Bank's REST API that provides a simple interface for managing banking operations.

Installation

Install the gem and add to the application's Gemfile by executing:

bundle add dsk_rb

If bundler is not being used to manage dependencies, install the gem by executing:

gem install dsk_rb

Usage

require 'dsk_rb'

# Initialize the client
# Requires the following parameters:
# - username: Provided by DSK Bank
# - password: Provided by DSK Bank
# - environment: The environment to use. For now, it can only be uat.

client = DskRb::Client.new(username: 'username', password: 'password', environment: 'uat')

# Register a new payment

# The register_payment method requires the following parameters:
# - amount: The amount of the payment
# - return_url: The URL to redirect the user to after the payment is completed
# - description: The description of the payment
# - order_number: The order number

response = client.register_payment(amount: 100, return_url: 'https://example.com', description: 'Test payment', orderNumber: '123')
redirect_url = response['formUrl']

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/kiriakosv/dsk_rb.

License

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