Payola- Rails 条码支付

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

推荐源码