summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-12-18 00:10:01 -0800
committerelijah <elijah@riseup.net>2013-12-20 10:56:01 -0800
commit34ac576bf7efbddac0a89731292eac8974f95114 (patch)
treeedc2b821602e5ea0310ae185eef4e9d6e710c843 /Gemfile
parent76517637ddf70577bd2a14bebb8a57552fbb1776 (diff)
enable billing engine by default, consolidate APP_CONFIG[:payments] and APP_CONFIG[:braintree] into APP_CONFIG[:billing][:braintree]
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Gemfile b/Gemfile
index a346afa..e111a4e 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,28 +4,23 @@ eval(File.read(File.dirname(__FILE__) + '/common_dependencies.rb'))
eval(File.read(File.dirname(__FILE__) + '/ui_dependencies.rb'))
# EITHER fetch all of the leap_web gems in one go
-# gem 'leap_web'
+# gem 'leap_web'
# OR use the local versions for development instead:
gem "leap_web_core", :path => 'core'
gem 'leap_web_users', :path => 'users'
gem 'leap_web_certs', :path => 'certs'
gem 'leap_web_help', :path => 'help'
-# gem 'leap_web_billing', :path => 'billing' # for now, this gem will be included for development and test environments only
+gem 'leap_web_billing', :path => 'billing'
# To use debugger
gem 'debugger', :platforms => :mri_19
# ruby 1.8 is not supported anymore
# gem 'ruby-debug', :platforms => :mri_18
-group :development do
- gem 'leap_web_billing', :path => 'billing'
-end
-
group :test do
gem 'fake_braintree', require: false
gem 'capybara', require: false
gem 'launchy' # so save_and_open_page works in integration tests
- gem 'leap_web_billing', :path => 'billing'
end
# unreleased so far ... but leap_web_certs need it