summaryrefslogtreecommitdiff
path: root/billing/config
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-04-11 10:03:19 +0200
committerAzul <azul@leap.se>2014-04-11 10:07:23 +0200
commit636692f9921bd695d726695d2d46c91f5a6e56f3 (patch)
treea7cc0b89007bd273ae7719f31c16e052a141fec7 /billing/config
parent32136605ddd405a0bf47f3b795b22fd4b49465b5 (diff)
move engines into engines directory
Also renamed help to support so it's harder to confuse it with documentation
Diffstat (limited to 'billing/config')
-rw-r--r--billing/config/initializers/braintree.rb23
-rw-r--r--billing/config/locales/en.yml11
-rw-r--r--billing/config/routes.rb25
3 files changed, 0 insertions, 59 deletions
diff --git a/billing/config/initializers/braintree.rb b/billing/config/initializers/braintree.rb
deleted file mode 100644
index 3d87f4c..0000000
--- a/billing/config/initializers/braintree.rb
+++ /dev/null
@@ -1,23 +0,0 @@
-#
-# set logger
-#
-if APP_CONFIG[:logfile].blank?
- require 'syslog/logger'
- Braintree::Configuration.logger = ActiveSupport::TaggedLogging.new(Syslog::Logger.new('webapp'))
-else
- Braintree::Configuration.logger = Logger.new('log/braintree.log')
-end
-
-#
-# You can set these per environment in config/config.yml:
-#
-# Environment must be one of: :development, :qa, :sandbox, :production
-#
-if billing = APP_CONFIG[:billing]
- if braintree = billing[:braintree]
- Braintree::Configuration.environment = braintree[:environment].downcase.to_sym
- Braintree::Configuration.merchant_id = braintree[:merchant_id]
- Braintree::Configuration.public_key = braintree[:public_key]
- Braintree::Configuration.private_key = braintree[:private_key]
- end
-end
diff --git a/billing/config/locales/en.yml b/billing/config/locales/en.yml
deleted file mode 100644
index 1300958..0000000
--- a/billing/config/locales/en.yml
+++ /dev/null
@@ -1,11 +0,0 @@
-en:
- create_new_customer: "Create a new Braintree Customer"
- must_create_customer: "You must store a customer in braintree before subscribing to a plan"
- subscribe: "Subscribe"
- save_customer_info: "Save Customer Information"
- donation_not_payment: "Note: This is a donation, and will not be applied towards your account."
- no_relevant_subscription: "No subscription which is Active, Pending, or Past Due"
- plan: "Plan"
- description: "Description"
- cost: "Cost"
- free: "Free" \ No newline at end of file
diff --git a/billing/config/routes.rb b/billing/config/routes.rb
deleted file mode 100644
index 7263dff..0000000
--- a/billing/config/routes.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-Rails.application.routes.draw do
-
- scope "(:locale)", :locale => MATCH_LOCALE do
- match 'payments/new' => 'payments#new', :as => :new_payment
- match 'payments/confirm' => 'payments#confirm', :as => :confirm_payment
- resources :users do
- resources :payments, :only => [:index]
- resources :subscriptions, :only => [:index, :show, :destroy]
- end
-
- resources :customer, :only => [:new, :edit]
- resources :credit_card_info, :only => [:edit]
-
- match 'customer/confirm/' => 'customer#confirm', :as => :confirm_customer
- match 'customer/show/:id' => 'customer#show', :as => :show_customer
- match 'credit_card_info/confirm' => 'credit_card_info#confirm', :as => :confirm_credit_card_info
-
- resources :subscriptions, :only => [:new, :create, :update] # index, show & destroy are within users path
- match 'billing_admin' => 'billing_admin#show', :as => :billing_admin
-
- #match 'transactions/:product_id/new' => 'transactions#new', :as => :new_transaction
- #match 'transactions/confirm/:product_id' => 'transactions#confirm', :as => :confirm_transaction
- end
-
-end