| create the directory for the spec log if it does not exist - reportable - Fork … | |
| Log | |
| Files | |
| Refs | |
| README | |
| --- | |
| commit cdd19dc22c66999353c45ffe34eefb1f28dc5960 | |
| parent dea7ab6c123faf5a39f0698e3f8fde513e290635 | |
| Author: marcoow <[email protected]> | |
| Date: Thu, 4 Dec 2008 04:34:48 +0800 | |
| create the directory for the spec log if it does not exist | |
| Signed-off-by: Marco Otte-Witte <[email protected]> | |
| Diffstat: | |
| M spec/boot.rb | 1 + | |
| 1 file changed, 1 insertion(+), 0 deletions(-) | |
| --- | |
| diff --git a/spec/boot.rb b/spec/boot.rb | |
| @@ -15,6 +15,7 @@ Rails::Initializer.run(:set_autoload_paths) | |
| require File.join(File.dirname(__FILE__), '/../init.rb') | |
| +FileUtils.mkdir_p File.join(File.dirname(__FILE__), 'log') | |
| ActiveRecord::Base.logger = Logger.new(File.join(File.dirname(__FILE__), 'log'… | |
| databases = YAML::load(IO.read(File.join(File.dirname(__FILE__), 'db', 'databa… |