Sha256: 48787dd1e30ccb2a42f514def7b991698b5ded145bd67a2dc9b4e450b2f0987f
Contents?: true
Size: 836 Bytes
Versions: 41
Compression:
Stored size: 836 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 # # # currency to use for the plan (default 'usd') # plan.currency = 'usd' # # # interval must be either 'day', 'week', '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
41 entries across 41 versions & 1 rubygems