pengwynn / chargify

Ruby wrapper for the chargify.com SAAS and billing API
MIT License
61 stars 29 forks source link

chargify

Ruby wrapper for the chargify.com SAAS and billing API

Installation

sudo gem install chargify

Example Usage

Create, cancel, then reactivate subscription

attributes   = { :product_handle => 'basic' ... }
@client      = Chargify::Client.new('InDhcXAAAAAg7juDD', 'xxx-test')
subscription = @client.create_subscription(attributes)
@client.cancel_subscription(subscription[:id], "Canceled due to bad customer service.") 
@client.reactivate_subscription(subscription[:id]) #Made him an offer he couldn't refuse!

Note on Patches/Pull Requests

Copyright

Copyright (c) 2009 Wynn Netherland. See LICENSE for details.