discourse-subscriptions/plugin.rb

20 lines
362 B
Ruby
Raw Normal View History

# name: choice-plugin
# about: Integrating CHOICE with Discourse
2017-01-30 21:28:41 -05:00
# version: 0.0.2
# authors: Rimian Perkins
2017-01-30 21:28:41 -05:00
gem 'stripe', '1.58.0'
2017-01-30 21:28:41 -05:00
module ::Choice
class Engine < ::Rails::Engine
engine_name 'choice'
isolate_namespace Choice
end
end
after_initialize do
Discourse::Application.routes.prepend do
mount ::Choice::Engine, at: '/choice'
end
end