Sha256: 3d54a337b4d06e778d5e436beabd65db43e51e9c8610d1d52b0c26fbff0eebdb

Contents?: true

Size: 1.49 KB

Versions: 11

Compression:

Stored size: 1.49 KB

Contents

# This file contains descriptions of all your stripe prices

# Example
# Stripe::Prices::LITE.lookup_key #=> 'lite'

# Prices will have a stripe generated id.  The lookup_key will match the
# configuration below.  You can fetch the ID or object from stripe:
#
#    Stripe::Prices::LITE.stripe_id #=> 'price_0000sdfs2qfsdf'
#    Stripe::Prices::LITE.stripe_object #=> #<Stripe::Price:0x3584 id=price_0000sdfs2qfsdf>...

# Prices are not deletable via the API, the `reset!` method will instead
# create a new price and transfer the lookup key to the new price.

# Stripe.price :lite do |price|
#   # Prices may belong to a product, this will create a product along with the price
#   price.name = 'Acme as a service LITE'

#   # You can also specify an existing product ID
#   # price.product_id = Stripe::Products::PRIMO.id
#
#   # amount in cents. This is 6.99
#   price.unit_amount = 699
#
#   # currency to use for the price (default 'usd')
#   price.currency = 'usd'
#
#   price.recurring = {
#     # interval must be either 'day', 'week', 'month' or 'year'
#     interval: 'month',
#     # only bill once every three months (default 1)
#     interval_count: 3,
#     # Must be either 'metered' or 'licensed'
#     usage_type: 'metered',
#     # Specifies a usage aggregation strategy for metered usage
#     aggregate_usage: 'sum'
#   }
#
# end

# Once you have your prices defined, you can run
#
#   rake stripe:prepare
#
# This will export any new prices to stripe.com so that you can
# begin using them in your API calls.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
stripe-rails-2.6.0 lib/generators/templates/prices.rb
stripe-rails-2.5.0 lib/generators/templates/prices.rb
stripe-rails-2.4.0 lib/generators/templates/prices.rb
stripe-rails-2.3.5 lib/generators/templates/prices.rb
stripe-rails-2.3.4 lib/generators/templates/prices.rb
stripe-rails-2.3.3 lib/generators/templates/prices.rb
stripe-rails-2.3.2 lib/generators/templates/prices.rb
stripe-rails-2.3.1 lib/generators/templates/prices.rb
stripe-rails-2.3.0 lib/generators/templates/prices.rb
stripe-rails-2.2.1 lib/generators/templates/prices.rb
stripe-rails-2.2.0 lib/generators/templates/prices.rb