2017-01-29 20:35:04 -05:00
|
|
|
# name: choice-plugin
|
2017-01-31 21:35:18 -05:00
|
|
|
# about: Integrating Discourse with Stripe
|
2017-02-12 21:55:00 -05:00
|
|
|
# version: 0.3.2
|
2017-01-29 20:35:04 -05:00
|
|
|
# authors: Rimian Perkins
|
2017-02-12 21:55:00 -05:00
|
|
|
# url: https://github.com/choiceaustralia/choice-discourse
|
2017-01-30 21:28:41 -05:00
|
|
|
|
2017-01-31 19:44:55 -05:00
|
|
|
gem 'stripe', '1.58.0'
|
2017-01-31 19:35:21 -05:00
|
|
|
|
2017-01-31 21:35:18 -05:00
|
|
|
Rails.configuration.stripe = {
|
2017-02-01 19:49:22 -05:00
|
|
|
:publishable_key => ENV['STRIPE_PUBLISHABLE_KEY'] || Rails.application.config_for(:stripe)['publishable_key'],
|
|
|
|
:secret_key => ENV['STRIPE_SECRET_KEY'] || Rails.application.config_for(:stripe)['secret_key']
|
2017-01-31 21:35:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
Stripe.api_key = Rails.configuration.stripe[:secret_key]
|
|
|
|
|
2017-02-08 20:17:25 -05:00
|
|
|
load File.expand_path('../lib/choice-discourse/engine.rb', __FILE__)
|
2017-01-30 21:28:41 -05:00
|
|
|
|
2017-02-06 21:56:22 -05:00
|
|
|
Discourse::Application.routes.prepend do
|
2017-02-09 23:10:47 -05:00
|
|
|
mount ::Choice::Engine, at: '/'
|
2017-01-30 21:28:41 -05:00
|
|
|
end
|