diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-06-22 12:29:23 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-06-22 12:29:23 -0400 |
commit | a2ab1d48021b225921eeeffe76a956633a7f99ac (patch) | |
tree | 97d3d0d0c574306eb1243e97f134a5556f15f242 /Rakefile | |
parent | b9b9eb09c1b3e2fbb309adfe7ebbe236f6d5c9e4 (diff) | |
download | my_new_personal_website-a2ab1d48021b225921eeeffe76a956633a7f99ac.tar.xz my_new_personal_website-a2ab1d48021b225921eeeffe76a956633a7f99ac.zip |
1. Reordered configs in Rakefile based on importance.
2. Refactored stylesheets to simplify dreictory trees.
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -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| |