mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 17:49:24 +00:00
14 lines
390 B
Ruby
14 lines
390 B
Ruby
# name: discourse-payments
|
|
# about: Integrating Discourse with Stripe
|
|
# version: 1.1.0
|
|
# url: https://github.com/choiceaustralia/discourse-payments
|
|
|
|
gem 'stripe', '1.58.0'
|
|
|
|
load File.expand_path('../lib/discourse_payments/engine.rb', __FILE__)
|
|
load File.expand_path('../config/stripe.rb', __FILE__)
|
|
|
|
Discourse::Application.routes.prepend do
|
|
mount ::DiscoursePayments::Engine, at: '/'
|
|
end
|