From add8d015c87a00626b739080bd75c7e7aeb9c1df Mon Sep 17 00:00:00 2001 From: Azul 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index bdcb017..7993150 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,4 @@ /pkg /*/pkg /log +*/Gemfile.lock -- cgit v1.2.3 From 61475258b0b346988689220057b07f9c9fb6317f Mon Sep 17 00:00:00 2001 From: Azul Date: Thu, 11 Oct 2012 11:08:58 +0200 Subject: lets not track the logs in version controll --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7993150..3567ebd 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,5 @@ /*/pkg /log */Gemfile.lock +test/dummy/log/* +test/dummy/tmp/* -- cgit v1.2.3