Project

adyen

Repository is archived
No commit activity in last 3 years
No release in over 3 years
Package to simplify including the Adyen payments services into a Ruby on Rails application. The package provides functionality to create payment forms, handling and storing notifications sent by Adyen and consuming the SOAP services provided by Adyen. Moreover, it contains helper methods, mocks and matchers to simpify writing tests/specs for your code.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 5.0
>= 0
>= 1.6.8
< 6.0, >= 3.2
>= 0
 Project Readme

Adyen Build Status

DEPRECATED: This library has been deprecated, in favour of the official client library released by Adyen.


Package to simplify including Adyen payments services into a Ruby on Rails application.

Adyen integration relies on three modes of communication between Adyen, your server and your client/customer:

  • Client-to-Adyen communication using Hosted Payment Pages (HPP).
  • Server-to-Adyen communication using their REST webservice.
  • Adyen-to-server communications using notifications.

This library aims to ease the implementation of all these modes into your Rack application. Moreover, it provides matchers, assertions and mocks to make it easier to implement an automated test suite to assert the integration is working correctly.

Usage

  • See the project wiki to get started.
  • Check out the example server for an example implementation of the HPP payment flow, and an implementation of self-hosted a payment flow that uses the REST webservice. To start the example server, run bundle exec rackup in the root of this project.
  • Complete RDoc documentation can be found on rubydoc.info.
  • For more information about Adyen, see http://www.adyen.com
  • For more information about integrating Adyen, see their manuals. Of primary interest are the HPP integration manual for Adyen::HPP, and the API integration manual for Adyen::REST.

The library doesn't have any dependencies, but making Nokogiri available in your environment will greatly improve the speed of any XML and HTML processing.

About

This package is written by Michel Barbosa and Willem van Bergen for Floorplanner.com, and made public under the MIT license (see LICENSE). It is currently maintained by Willem van Bergen, with help from several contributors. We are not affiliated with Adyen B.V. The software comes without warranty of any kind, so use at your own risk.

  • CHANGELOG.md documents the changes between releases.
  • Check out CONTRIBUTING.md if you want to help out with this project.