Merge remote branch 'christianhellsten/master' into next

This commit is contained in:
Tom Preston-Werner 2010-06-22 16:01:48 -07:00
commit f8484570b7
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ module Jekyll
'server' => false,
'server_port' => 4000,
'source' => '.',
'source' => Dir.pwd,
'destination' => File.join('.', '_site'),
'plugins' => File.join('.', '_plugins'),

View File

@ -3,7 +3,7 @@ require File.dirname(__FILE__) + '/helper'
class TestConfiguration < Test::Unit::TestCase
context "loading configuration" do
setup do
@path = './_config.yml'
@path = File.join(Dir.pwd, '_config.yml')
end
should "fire warning with no _config.yml" do