discourse-subscriptions/plugin.rb

13 lines
324 B
Ruby
Raw Normal View History

2017-02-14 20:36:38 -05:00
# name: discourse-payments
# about: Integrating Discourse with Stripe
2017-02-13 18:28:07 -05:00
# version: 1.0.1
2017-02-14 20:36:38 -05:00
# url: https://github.com/choiceaustralia/discourse-payments
2017-01-30 21:28:41 -05:00
gem 'stripe', '1.58.0'
2017-02-14 20:36:38 -05:00
load File.expand_path('../lib/discourse-payments/engine.rb', __FILE__)
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