Payola 为你的 Rails 应用提供了条码支付的功能。
示例:
class Book < ActiveRecord::Base include Payola::Sellable end Payola.configure do |config| config.subscribe 'charge.succeeded' do |event| puts "whoohoo!" end end