diff options
author | Azul <azul@leap.se> | 2012-10-11 10:22:34 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-10-11 10:22:34 +0200 |
commit | add8d015c87a00626b739080bd75c7e7aeb9c1df (patch) | |
tree | b972daa7d2574c38910e91aea4ac98b7663e69ca /Gemfile.lock | |
parent | 00b7b36516d1d07300870029ad5190f06122a493 (diff) |
moved core dependency into */Gemfile with :path
In order to get the rails generators and the like to work properly in engines we need to require all the dependencies in the engine.rb file.
Since I want to keep that list of engines in a centralized place we still need core and we need to require it from the other engines.
We don't want to require the core gem to be installed so I added it with :path option to the Gemfile.
Diffstat (limited to 'Gemfile.lock')
-rw-r--r-- | Gemfile.lock | 18 |
1 files changed, 13 insertions, 5 deletions
diff --git a/Gemfile.lock b/Gemfile.lock index 955c637..fe49476 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,11 +2,23 @@ PATH remote: certs specs: leap_web_certs (0.1.0) + leap_web_core (= 0.1.0) + +PATH + remote: core + specs: + leap_web_core (0.1.0) + couchrest (~> 1.1.3) + couchrest_model (~> 2.0.0.beta2) + couchrest_session_store (~> 0.0.1) + json + rails (~> 3.2.8) PATH remote: users specs: leap_web_users (0.1.0) + leap_web_core (= 0.1.0) ruby-srp (~> 0.1.1) GEM @@ -156,17 +168,13 @@ PLATFORMS DEPENDENCIES bootstrap-sass (~> 2.0.4) coffee-rails (~> 3.2.2) - couchrest (~> 1.1.3) - couchrest_model (~> 2.0.0.beta2) - couchrest_session_store (~> 0.0.1) haml (~> 3.1.7) haml-rails (~> 0.3.4) jquery-rails - json leap_web_certs! + leap_web_core! leap_web_users! mocha - rails (~> 3.2.8) ruby-debug sass-rails (~> 3.2.5) simple_form |