Files
discourse-subscriptions/plugin.rb
T

13 lines
335 B
Ruby
Raw Normal View History

2017-02-15 12:36:38 +11:00
# name: discourse-payments
# about: Integrating Discourse with Stripe
2017-02-15 13:03:58 +11:00
# version: 1.1.0
2017-02-15 12:36:38 +11:00
# url: https://github.com/choiceaustralia/discourse-payments
2017-01-31 13:28:41 +11:00
gem 'stripe', '1.58.0'
2017-02-15 13:03:58 +11:00
load File.expand_path('../lib/discourse_payments/engine.rb', __FILE__)
2017-02-07 13:56:22 +11:00
Discourse::Application.routes.prepend do
2017-02-15 13:03:58 +11:00
mount ::DiscoursePayments::Engine, at: '/'
2017-01-31 13:28:41 +11:00
end