Payola - Rails 条码支付


LGPL
跨平台
Ruby

软件简介

Payola 为你的 Rails 应用提供了条码支付的功能。

示例:

class Book < ActiveRecord::Base
  include Payola::Sellable
end

Payola.configure do |config|
  config.subscribe 'charge.succeeded' do |event|
    puts "whoohoo!"
  end
end