diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-22 00:03:11 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-22 00:03:11 -0400 |
commit | 12aed03eea27534168a1a5edb7c484fdf24b5937 (patch) | |
tree | 328892f88da591c38f106ee22fc747495b984353 /Rakefile | |
parent | 39d56bc98834b09fc6939fd27bde8848efbb251d (diff) | |
download | my_new_personal_website-12aed03eea27534168a1a5edb7c484fdf24b5937.tar.xz my_new_personal_website-12aed03eea27534168a1a5edb7c484fdf24b5937.zip |
updated rakefile and config to support url mapping in previous commit
Diffstat (limited to '')
-rw-r--r-- | Rakefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -201,12 +201,14 @@ task :set_root_dir, :dir do |t, args| end jekyll_config = IO.read('_config.yml') jekyll_config.sub!(/^destination:.+$/, "destination: public#{dir}") - jekyll_config.sub!(/^subscribe_rss:.+$/, "subscribe_rss: #{dir}/atom.xml") - jekyll_config.sub!(/^root:.*$/, "root: #{dir}") + jekyll_config.sub!(/^subscribe_rss:\s*\/.+$/, "subscribe_rss: #{dir}/atom.xml") + jekyll_config.sub!(/^root:.*$/, "root: /#{dir.sub(/^\//, '')}") File.open('_config.yml', 'w') do |f| f.write jekyll_config end - mkdir_p "public#{dir}" + rm_rf public_dir + mkdir_p "#{public_dir}#{dir}" + puts "## Site's root directory is now '/#{dir.sub(/^\//, '')}' ##" end end |