Sha256: 87022581d4f8f3f5da4ac90c4ec709d1a5e00e72f0312ab98ea94a081b20d580
Contents?: true
Size: 1.14 KB
Versions: 6
Compression:
Stored size: 1.14 KB
Contents
<%= Rails.application.class.name %>.configure do # change this to your PayPal API User ID config.subscription_fu.paypal_api_user_id = "michae_1272617165_biz_api1.mobalean.com" # change this to your PayPal API password config.subscription_fu.paypal_api_pwd = "1272617171" # change this to your PayPal API signature config.subscription_fu.paypal_api_sig = "ATpPRKe6SEGaLcgDfFD-kBQgVsGuA9iFQwK6d4x6Qs4iti0XYRkZQl9Q" # Your subscription plans. You'll need to add at least one plan. # You can use a custom class for billing plans. The default is # SubscriptionFu::Plan, which you can use as the base for custom plans. # Using your custom plan class allows you to further configure system # parameters based on a selected plan. #config.subscription_fu.plan_class_name = "MyPlan" # The first parameter is an identifier for this plan. For non-free plans, # the second parameter isthe price. If you would like to add custom plan # parameters, you can change the class used for plans (see above). config.subscription_fu.add_free_plan 'free' config.subscription_fu.add_plan 'basic', 1000 config.subscription_fu.add_plan 'premium', 5000 end
Version data entries
6 entries across 6 versions & 1 rubygems