Chargebee Ruby Client Library - API V2

<img src=“https://img.shields.io/gem/v/chargebee.svg?maxAge=2592000”/> <img src=“https://img.shields.io/gem/dtv/chargebee.svg?maxAge=2592000”/>

This is the Ruby Library for integrating with Chargebee. Sign up for a Chargebee account here.

Chargebee now supports two API versions - V1 and V2, of which V2 is the latest release and all future developments will happen in V2. This library is for API version V2. If you’re looking for V1, head to chargebee-v1 branch.

Installation

Install the latest version of the gem with the following command…

$ sudo gem install chargebee -v '~>2'

Documentation

For API reference see here

Usage

To create a new subscription:

ChargeBee.configure({:api_key => "your_api_key"}, {:site => "your_site"})
result = ChargeBee::Subscription.create({
	:id => "sub_KyVqDh__dev__NTn4VZZ1", 
	:plan_id => "basic", 
})
subscription = result.subscription
puts "created subscription is #{subscription}"

License

See the LICENSE file.