summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-11 10:22:34 +0200
committerAzul <azul@leap.se>2012-10-11 10:22:34 +0200
commitadd8d015c87a00626b739080bd75c7e7aeb9c1df (patch)
treeb972daa7d2574c38910e91aea4ac98b7663e69ca /Gemfile
parent00b7b36516d1d07300870029ad5190f06122a493 (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')
-rw-r--r--Gemfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index 6d28e3d..10c661a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -6,6 +6,7 @@ eval(File.read(File.dirname(__FILE__) + '/ui_dependencies.rb'))
# 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 'leap_web_help', :path => 'help'