aboutsummaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorFrederic Hemberger <mail@frederic-hemberger.de>2011-12-10 03:21:59 -0800
committerFrederic Hemberger <mail@frederic-hemberger.de>2011-12-10 03:21:59 -0800
commit7f3ad1c1cc40d6598a8d04eb45f146943c120d3b (patch)
tree9d202b8ad7c7da08909a8ed51cdf8d7ec95be79c /Rakefile
parentd99434bca93510f9d7310b41690b824b70215597 (diff)
parent6714e5c7f5b3a874732e58dd2e6383e184da7019 (diff)
downloadmy_new_personal_website-7f3ad1c1cc40d6598a8d04eb45f146943c120d3b.tar.xz
my_new_personal_website-7f3ad1c1cc40d6598a8d04eb45f146943c120d3b.zip
Merge pull request #293 from imathis/generate_environment
Introduce distinction between preview/productive site generation
Diffstat (limited to '')
-rw-r--r--Rakefile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 7d7f6d8f..ebc386e6 100644
--- a/Rakefile
+++ b/Rakefile
@@ -59,7 +59,7 @@ task :watch 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 "Starting to watch source with Jekyll and Compass."
system "compass compile --css-dir #{source_dir}/stylesheets" unless File.exist?("#{source_dir}/stylesheets/screen.css")
- jekyllPid = Process.spawn("jekyll --auto")
+ jekyllPid = Process.spawn({"OCTOPRESS_ENV"=>"preview"}, "jekyll --auto")
compassPid = Process.spawn("compass watch")
trap("INT") {
@@ -75,7 +75,7 @@ task :preview 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 "Starting to watch source with Jekyll and Compass. Starting Rack on port #{server_port}"
system "compass compile --css-dir #{source_dir}/stylesheets" unless File.exist?("#{source_dir}/stylesheets/screen.css")
- jekyllPid = Process.spawn("jekyll --auto")
+ jekyllPid = Process.spawn({"OCTOPRESS_ENV"=>"preview"}, "jekyll --auto")
compassPid = Process.spawn("compass watch")
rackupPid = Process.spawn("rackup --port #{server_port}")
@@ -200,6 +200,13 @@ end
desc "Default deploy task"
task :deploy do
+ # Check if preview posts exist, which should not be published
+ if File.exists?(".preview-mode")
+ puts "## Found posts in preview mode, regenerating files ..."
+ File.delete(".preview-mode")
+ Rake::Task[:generate].execute
+ end
+
Rake::Task[:copydot].invoke(source_dir, public_dir)
Rake::Task["#{deploy_default}"].execute
end