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 /help | |
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 'help')
-rw-r--r-- | help/Gemfile | 3 | ||||
-rw-r--r-- | help/lib/leap_web_help.rb | 1 | ||||
-rw-r--r-- | help/lib/leap_web_help/engine.rb | 2 |
3 files changed, 5 insertions, 1 deletions
diff --git a/help/Gemfile b/help/Gemfile index bfd760e..5e895e9 100644 --- a/help/Gemfile +++ b/help/Gemfile @@ -3,6 +3,9 @@ source "http://rubygems.org" eval(File.read(File.dirname(__FILE__) + '/../common_dependencies.rb')) eval(File.read(File.dirname(__FILE__) + '/..//ui_dependencies.rb')) +# We require leap_web_core from here so we can use the path option. +gem "leap_web_core", :path => '../core' + # Declare your gem's dependencies in leap_web_users.gemspec. # Bundler will treat runtime dependencies like base dependencies, and # development dependencies will be added by default to the :development group. diff --git a/help/lib/leap_web_help.rb b/help/lib/leap_web_help.rb index 89dabcf..f5b04aa 100644 --- a/help/lib/leap_web_help.rb +++ b/help/lib/leap_web_help.rb @@ -1,4 +1,3 @@ -require "leap_web_core" require "leap_web_help/engine" module LeapWebHelp diff --git a/help/lib/leap_web_help/engine.rb b/help/lib/leap_web_help/engine.rb index 1006c29..4146dfc 100644 --- a/help/lib/leap_web_help/engine.rb +++ b/help/lib/leap_web_help/engine.rb @@ -1,4 +1,6 @@ # thou shall require all your dependencies in an engine. +require "leap_web_core" +require "leap_web_core/ui_dependencies" module LeapWebHelp class Engine < ::Rails::Engine |