summaryrefslogtreecommitdiff
path: root/billing/lib/leap_web_billing
diff options
context:
space:
mode:
authorjessib <jessib@leap.se>2013-03-07 12:17:13 -0800
committerAzul <azul@leap.se>2013-07-17 10:46:25 +0200
commit2e59c7131a08acab4944b18ba4b8d82daa402c4f (patch)
tree28d33392410b4619ad553fb75f1d056584445fa5 /billing/lib/leap_web_billing
parent97bd0ba4b35481216b2a1592065c70562c81c2d5 (diff)
Start to branch using braintree to process credit card payments.
Diffstat (limited to 'billing/lib/leap_web_billing')
-rw-r--r--billing/lib/leap_web_billing/engine.rb11
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