Sha256: b47cba7c1c985d95d1467a5eedc17b01541353cc11344e9bb0780b998f4cb1c2

Contents?: true

Size: 743 Bytes

Versions: 7

Compression:

Stored size: 743 Bytes

Contents

# This file contains descriptions of all your stripe plans

# Example
# Stripe::Plans::PRIMO #=> 'primo'

# Stripe.plan :primo do |plan|
#
#   # plan name as it will appear on credit card statements
#   plan.name = 'Acme as a service PRIMO'
#
#   # amount in cents. This is 6.99
#   plan.amount = 699
#
#   # interval must be either 'month' or 'year'
#   plan.interval = 'month'
#
#   # only bill once every three months (default 1)
#   plan.interval_count = 3
#
#   # number of days before charging customer's card (default 0)
#   plan.trial_period_days = 30
# end

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
stripe-rails-0.2.5 lib/generators/templates/plans.rb
stripe-rails-0.2.4 lib/generators/templates/plans.rb
stripe-rails-0.2.3 lib/generators/templates/plans.rb
stripe-rails-0.2.2 lib/generators/templates/plans.rb
stripe-rails-0.2.1 lib/generators/templates/plans.rb
stripe-rails-0.2.0 lib/generators/templates/plans.rb
stripe-rails-0.1.0 lib/generators/templates/plans.rb