From a2ab1d48021b225921eeeffe76a956633a7f99ac Mon Sep 17 00:00:00 2001 From: Brandon Mathis Date: Wed, 22 Jun 2011 12:29:23 -0400 Subject: 1. Reordered configs in Rakefile based on importance. 2. Refactored stylesheets to simplify dreictory trees. --- Rakefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile index a7d570de..97b28f30 100644 --- a/Rakefile +++ b/Rakefile @@ -1,6 +1,13 @@ require "rubygems" require "bundler/setup" +## -- Rsync Deploy config -- ## +# Be sure your public key is listed in your server's ~/.ssh/authorized_keys file +ssh_user = "mathisweb@imathis.com" +document_root = "~/dev.octopress.org/" + +## -- Misc Configs, you probably have no reason to changes these -- ## + public_dir = "public" # compiled site directory source_dir = "source" # source file directory deploy_dir = "_deploy" # deploy directory (for Github pages deployment) @@ -8,10 +15,6 @@ stash_dir = "_stash" # directory to stash posts for speedy generation posts_dir = "_posts" # directory for blog files post_format = "markdown" # file format for new posts when using the post rake task -## -- Rsync Deploy config -- ## -# Be sure your public key is listed in your server's ~/.ssh/authorized_keys file -ssh_user = "mathisweb@imathis.com" -document_root = "~/dev.octopress.org/" desc "Initial setup for Octopress: copies the default theme into the path of Jekyll's generator. rake install defaults to rake install[classic] to install a different theme run rake install[some_theme_name]" task :install, :theme do |t, args| -- cgit v1.2.1