From 00b7b36516d1d07300870029ad5190f06122a493 Mon Sep 17 00:00:00 2001
From: Azul <azul@leap.se>
Date: Wed, 10 Oct 2012 19:56:35 +0200
Subject: first steps at reducing core

---
 help/lib/leap_web_help/engine.rb  | 4 ----
 help/lib/leap_web_help/version.rb | 3 ---
 2 files changed, 7 deletions(-)
 delete mode 100644 help/lib/leap_web_help/version.rb

(limited to 'help/lib/leap_web_help')

diff --git a/help/lib/leap_web_help/engine.rb b/help/lib/leap_web_help/engine.rb
index 2ff3e86..1006c29 100644
--- a/help/lib/leap_web_help/engine.rb
+++ b/help/lib/leap_web_help/engine.rb
@@ -1,8 +1,4 @@
 # thou shall require all your dependencies in an engine.
-require "leap_web_core"
-#require "leap_web_users" #necessary? 
-
-LeapWebCore::Dependencies.require_ui_gems
 
 module LeapWebHelp
   class Engine < ::Rails::Engine
diff --git a/help/lib/leap_web_help/version.rb b/help/lib/leap_web_help/version.rb
deleted file mode 100644
index 6a7c85d..0000000
--- a/help/lib/leap_web_help/version.rb
+++ /dev/null
@@ -1,3 +0,0 @@
-module LeapWebHelp
-  VERSION = "0.0.1"
-end
-- 
cgit v1.2.3


From add8d015c87a00626b739080bd75c7e7aeb9c1df Mon Sep 17 00:00:00 2001
From: Azul <azul@leap.se>
Date: Thu, 11 Oct 2012 10:22:34 +0200
Subject: 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.
---
 help/lib/leap_web_help/engine.rb | 2 ++
 1 file changed, 2 insertions(+)

(limited to 'help/lib/leap_web_help')

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
-- 
cgit v1.2.3