diff options
author | jessib <jessib@riseup.net> | 2013-08-27 12:38:16 -0700 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-08-27 12:38:16 -0700 |
commit | 060e06daa065f02b811dfe12850b101a62c12c8d (patch) | |
tree | 8e1e4112371a50870afb9dfa01155116be879af3 /Gemfile | |
parent | dc41ae0a3fb0a137e716d8ec63084b0ec3a7299b (diff) |
Not ideal way to do it, but was proving complicated to have a config file specify which gems for which environments.
Here, we have the billing gem included for the development and test environments only, hardcoded in the Gemfile.
Then we show the links to billing based on a config file setting. The setting itself could be used to specify different types of billing, but isn't yet.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10,18 +10,22 @@ 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' +# gem 'leap_web_billing', :path => 'billing' # for now, this gem will be included for development and test environments only # 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 |