Added warning if users try to add posts, pages, or generate their site

before installing an Octopress theme, fixes #116
This commit is contained in:
Brandon Mathis 2011-08-25 10:36:57 -04:00
parent 94fcb60958
commit b38b613908

View File

@ -1,6 +1,5 @@
require "rubygems" require "rubygems"
require "bundler/setup" require "bundler/setup"
require "stringex"
## -- Rsync Deploy config -- ## ## -- Rsync Deploy config -- ##
# Be sure your public key is listed in your server's ~/.ssh/authorized_keys file # Be sure your public key is listed in your server's ~/.ssh/authorized_keys file
@ -44,50 +43,32 @@ end
desc "Generate jekyll site" desc "Generate jekyll site"
task :generate do task :generate do
raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
puts "## Generating Site with Jekyll" puts "## Generating Site with Jekyll"
system "jekyll" system "jekyll"
end end
desc "Watch the site and regenerate when it changes" desc "Watch the site and regenerate when it changes"
task :watch do task :watch do
puts "Starting to watch source with Jekyll and Compass." raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
jekyllPid = spawn("jekyll --auto") system "trap 'kill $jekyllPid $compassPid' Exit; jekyll --auto & jekyllPid=$!; compass watch & compassPid=$!; wait"
compassPid = spawn("compass watch")
trap("INT") {
Process.kill(9, jekyllPid)
Process.kill(9, compassPid)
exit 0
}
Process.wait
end end
desc "preview the site in a web browser" desc "preview the site in a web browser"
task :preview do task :preview do
puts "Starting to watch source with Jekyll and Compass. Starting Rack on port #{server_port}" raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
jekyllPid = spawn("jekyll --auto") system "trap 'kill $jekyllPid $compassPid $rackPid' Exit; jekyll --auto & jekyllPid=$!; compass watch & compassPid=$!; rackup --port #{server_port} & rackPid=$!; wait"
compassPid = spawn("compass watch")
rackupPid = spawn("rackup --port #{server_port}")
trap("INT") {
Process.kill(9, jekyllPid)
Process.kill(9, compassPid)
Process.kill(9, rackupPid)
exit 0
}
Process.wait
end end
# usage rake new_post[my-new-post] or rake new_post['my new post'] or rake new_post (defaults to "new-post") # usage rake new_post[my-new-post] or rake new_post['my new post'] or rake new_post (defaults to "new-post")
desc "Begin a new post in #{source_dir}/#{posts_dir}" desc "Begin a new post in #{source_dir}/#{posts_dir}"
task :new_post, :title do |t, args| task :new_post, :title do |t, args|
raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
require './plugins/titlecase.rb' require './plugins/titlecase.rb'
mkdir_p "#{source_dir}/#{posts_dir}" mkdir_p "#{source_dir}/#{posts_dir}"
args.with_defaults(:title => 'new-post') args.with_defaults(:title => 'new-post')
title = args.title title = args.title
filename = "#{source_dir}/#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.to_url}.#{new_post_ext}" filename = "#{source_dir}/#{posts_dir}/#{Time.now.strftime('%Y-%m-%d')}-#{title.downcase.gsub(/&/,'and').gsub(/[,'":\?!\(\)\[\]]/,'').gsub(/[\W\.]/, '-').gsub(/-+$/,'')}.#{new_post_ext}"
puts "Creating new post: #{filename}" puts "Creating new post: #{filename}"
open(filename, 'w') do |post| open(filename, 'w') do |post|
system "mkdir -p #{source_dir}/#{posts_dir}/"; system "mkdir -p #{source_dir}/#{posts_dir}/";
@ -104,6 +85,7 @@ end
# usage rake new_page[my-new-page] or rake new_page[my-new-page.html] or rake new_page (defaults to "new-page.markdown") # usage rake new_page[my-new-page] or rake new_page[my-new-page.html] or rake new_page (defaults to "new-page.markdown")
desc "Create a new page in #{source_dir}/(filename)/index.#{new_page_ext}" desc "Create a new page in #{source_dir}/(filename)/index.#{new_page_ext}"
task :new_page, :filename do |t, args| task :new_page, :filename do |t, args|
raise "### You haven't set anything up yet. First run `rake install` to set up an Octopress theme." unless File.directory?(source_dir)
require './plugins/titlecase.rb' require './plugins/titlecase.rb'
args.with_defaults(:filename => 'new-page') args.with_defaults(:filename => 'new-page')
page_dir = source_dir page_dir = source_dir
@ -147,7 +129,7 @@ end
desc "Clean out caches: _code_cache, _gist_cache, .sass-cache" desc "Clean out caches: _code_cache, _gist_cache, .sass-cache"
task :clean do task :clean do
rm_rf ["_code_cache/**", "_gist_cache/**", ".sass-cache/**", "source/stylesheets/screen.css"] system "rm -rf _code_cache/** _gist_cache/** .sass-cache/** source/stylesheets/screen.css"
end end
desc "Move sass to sass.old, install sass theme updates, replace sass/custom with sass.old/custom" desc "Move sass to sass.old, install sass theme updates, replace sass/custom with sass.old/custom"
@ -155,11 +137,11 @@ task :update_style, :theme do |t, args|
theme = args.theme || 'classic' theme = args.theme || 'classic'
if File.directory?("sass.old") if File.directory?("sass.old")
puts "removed existing sass.old directory" puts "removed existing sass.old directory"
rm_r "sass.old", :secure=>true system "rm -r sass.old"
end end
mv "sass", "sass.old" system "mv sass sass.old"
puts "## Moved styles into sass.old/" puts "## Moved styles into sass.old/"
cp_r "#{themes_dir}/"+theme+"/sass/", "sass" system "mkdir -p sass; cp -R #{themes_dir}/"+theme+"/sass/* sass/"
cp_r "sass.old/custom/.", "sass/custom" cp_r "sass.old/custom/.", "sass/custom"
puts "## Updated Sass ##" puts "## Updated Sass ##"
end end
@ -169,16 +151,15 @@ task :update_source, :theme do |t, args|
theme = args.theme || 'classic' theme = args.theme || 'classic'
if File.directory?("#{source_dir}.old") if File.directory?("#{source_dir}.old")
puts "removed existing #{source_dir}.old directory" puts "removed existing #{source_dir}.old directory"
rm_r "#{source_dir}.old", :secure=>true system "rm -r #{source_dir}.old"
end end
mv source_dir, "#{source_dir}.old" system "mv #{source_dir} #{source_dir}.old"
puts "moved #{source_dir} into #{source_dir}.old/" puts "moved #{source_dir} into #{source_dir}.old/"
mkdir_p source_dir system "mkdir -p #{source_dir}; cp -R #{themes_dir}/"+theme+"/source/. #{source_dir}"
cp_r "#{themes_dir}/"+theme+"/source/.", source_dir system "cp -Rn #{source_dir}.old/. #{source_dir}"
cp_r "#{source_dir}.old/.", source_dir, :preserve=>true system "cp -Rf #{source_dir}.old/_includes/custom/. #{source_dir}/_includes/custom/"
cp_r "#{source_dir}.old/_includes/custom/.", "#{source_dir}/_includes/custom/" system "mv -f #{source_dir}/index.html #{blog_index_dir}" if blog_index_dir != source_dir
mv "#{source_dir}/index.html", "#{blog_index_dir}", :force=>true if blog_index_dir != source_dir system "cp -f #{source_dir}.old/index.html #{source_dir}" if blog_index_dir != source_dir
cp "#{source_dir}.old/index.html", source_dir if blog_index_dir != source_dir
puts "## Updated #{source_dir} ##" puts "## Updated #{source_dir} ##"
end end
@ -187,19 +168,7 @@ end
############## ##############
desc "Default deploy task" desc "Default deploy task"
multitask :deploy => [:copydot, "#{deploy_default}"] do task :deploy => "#{deploy_default}" do
end
desc "copy dot files for deployment"
task :copydot do
cd "#{source_dir}" do
exclusions = [".", "..", ".DS_Store"]
Dir[".*"].each do |file|
if !File.directory?(file) && !exclusions.include?(file)
cp(file, "../#{public_dir}");
end
end
end
end end
desc "Deploy website via rsync" desc "Deploy website via rsync"
@ -209,7 +178,7 @@ task :rsync do
end end
desc "deploy public directory to github pages" desc "deploy public directory to github pages"
multitask :push do task :push do
puts "## Deploying branch to Github Pages " puts "## Deploying branch to Github Pages "
(Dir["#{deploy_dir}/*"]).each { |f| rm_rf(f) } (Dir["#{deploy_dir}/*"]).each { |f| rm_rf(f) }
system "cp -R #{public_dir}/* #{deploy_dir}" system "cp -R #{public_dir}/* #{deploy_dir}"