diff options
author | Azul <azul@riseup.net> | 2012-09-27 22:47:22 +0200 |
---|---|---|
committer | Azul <azul@riseup.net> | 2012-09-27 22:47:22 +0200 |
commit | b383d8792e906ac2adcd4851bd69ec3046d9a941 (patch) | |
tree | 0f2d8361f4aa40bd57aa12be8f618869661cf0d3 /Gemfile | |
parent | ebbfe3d77efddbe8f97fa82c171632ac4cfcf6da (diff) |
using the local path for development
this way you do not need to build a gem for changes to take effect.
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -26,7 +26,12 @@ gem 'bootstrap-sass', '~> 2.0.4' gem 'haml', '~> 3.1.7' gem 'simple_form' -gem 'leap_web' +# EITHER fetch all of the leap_web gems in one go +# 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 'couchrest_session_store' |