2. Added whole vendor directory to .gitignore for `bundle package` users
3. Removed guard tasks and replaced serve tasks in Rakefile.
3. Reorganized rake tasks and cleaned up the Rakefile.
@ -9,25 +9,16 @@ posts = "_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="user@host.com"# for rsync deployment
document_root="~/document_root/"# for rsync deployment
## ---- ##
## -- Github Pages deploy config -- ##
# Read http://pages.github.com for guidance
# You can deploy to github pages with `rake push_github` or change the default push task below to :push_github
# If you're not using this, you can remove it
# You can deploy to github pages with `rake push_github` or change the default push task to :push_github
source_branch="source"# this compiles to your deploy branch
deploy_branch="master"# For user pages, use "master" for project pages use "gh-pages"
## ---- ##
defok_failed(condition)
if(condition)
puts"OK"
else
puts"FAILED"
end
end
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,:themedo|t,args|
@ -36,22 +27,21 @@ task :install, :theme do |t, args|