Sha256: bf7705ccd499d5f61a1b9460537c0bace91ec5535e23a0a9eb4febe0a54390da

Contents?: true

Size: 1.9 KB

Versions: 34

Compression:

Stored size: 1.9 KB

Contents

$: << File.expand_path(File.dirname(__FILE__) + '/../lib')

require 'chargify_api_ares'

# You could load your credentials from a file...
chargify_config = YAML::load_file(File.join(File.dirname(__FILE__), '..', 'chargify.yml'))

Chargify.configure do |c|
  c.subdomain = chargify_config['subdomain']
  c.api_key   = chargify_config['api_key']
end


# Retrieve a list of all your products
products = Chargify::Product.find(:all)
# => [#<Chargify::Product:0x102cdcac8 @prefix_options={}, @attributes={"name"=>"Chargify API Ares Test", "price_in_cents"=>0, "handle"=>"chargify-api-ares-test", "product_family"=>#<Chargify::Product::ProductFamily:0x102cdbad8 @prefix_options={}, @attributes={"name"=>"Chargify API ARes Test", "handle"=>"chargify-api-ares-test", "id"=>78, "accounting_code"=>nil}>, "id"=>152, "accounting_code"=>nil, "interval_unit"=>"month", "interval"=>1}>]

# Find a single product by id
product = Chargify::Product.find(products.first.id)
# => #<Chargify::Product:0x102ce7540 @prefix_options={}, @attributes={"price_in_cents"=>0, "name"=>"Chargify API Ares Test", "handle"=>"chargify-api-ares-test", "product_family"=>#<Chargify::Product::ProductFamily:0x102ce6ca8 @prefix_options={}, @attributes={"name"=>"Chargify API ARes Test", "handle"=>"chargify-api-ares-test", "id"=>78, "accounting_code"=>nil}>, "id"=>152, "accounting_code"=>nil, "interval_unit"=>"month", "interval"=>1}>

# Find a single product by its handle
product = Chargify::Product.find_by_handle(products.first.handle)
# => #<Chargify::Product:0x102c7a828 @prefix_options={}, @attributes={"price_in_cents"=>0, "name"=>"Chargify API Ares Test", "handle"=>"chargify-api-ares-test", "product_family"=>#<Chargify::Product::ProductFamily:0x102c798b0 @prefix_options={}, @attributes={"name"=>"Chargify API ARes Test", "handle"=>"chargify-api-ares-test", "id"=>78, "accounting_code"=>nil}>, "id"=>152, "accounting_code"=>nil, "interval_unit"=>"month", "interval"=>1}>

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
chargify_api_ares-1.4.15 examples/products.rb
chargify_api_ares-1.4.14 examples/products.rb
chargify_api_ares-1.4.13 examples/products.rb
chargify_api_ares-1.4.11 examples/products.rb
chargify_api_ares-1.4.10 examples/products.rb
chargify_api_ares-1.4.7 examples/products.rb
chargify_api_ares-1.4.6 examples/products.rb
chargify_api_ares-1.4.5 examples/products.rb
chargify_api_ares-1.4.4 examples/products.rb
chargify_api_ares-1.4.3 examples/products.rb
chargify_api_ares-1.4.2 examples/products.rb
chargify_api_ares-1.4.1 examples/products.rb
chargify_api_ares-1.4.0 examples/products.rb
chargify_api_ares-1.3.5 examples/products.rb
chargify_api_ares-1.3.4 examples/products.rb
chargify_api_ares-1.3.3 examples/products.rb
chargify_api_ares-1.3.2 examples/products.rb
chargify_api_ares-1.3.1 examples/products.rb
chargify_api_ares-1.3.0 examples/products.rb
chargify_api_ares-1.2.1 examples/products.rb