diff options
author | jessib <jessib@leap.se> | 2013-03-07 12:17:13 -0800 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-07-17 10:46:25 +0200 |
commit | 2e59c7131a08acab4944b18ba4b8d82daa402c4f (patch) | |
tree | 28d33392410b4619ad553fb75f1d056584445fa5 /billing/lib/leap_web_billing/engine.rb | |
parent | 97bd0ba4b35481216b2a1592065c70562c81c2d5 (diff) |
Start to branch using braintree to process credit card payments.
Diffstat (limited to 'billing/lib/leap_web_billing/engine.rb')
-rw-r--r-- | billing/lib/leap_web_billing/engine.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/billing/lib/leap_web_billing/engine.rb b/billing/lib/leap_web_billing/engine.rb new file mode 100644 index 0000000..acf63b0 --- /dev/null +++ b/billing/lib/leap_web_billing/engine.rb @@ -0,0 +1,11 @@ +# thou shall require all your dependencies in an engine. +require "leap_web_core" +require "leap_web_core/ui_dependencies" + +require "braintree-rails" + +module LeapWebBilling + class Engine < ::Rails::Engine + + end +end |