From 922472517fb4481bfaba88d9c2b0103b36f6b758 Mon Sep 17 00:00:00 2001 From: Kent Fenwick Date: Sat, 16 Jul 2011 11:27:16 -0700 Subject: [PATCH] Updated path to plugins. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e588f9a..0a7eff8 100644 --- a/Rakefile +++ b/Rakefile @@ -59,7 +59,7 @@ end # usage rake post[my-new-post] or rake post['my new post'] or rake post (defaults to "new-post") desc "Begin a new post in #{source_dir}/#{posts_dir}" task :post, :filename do |t, args| - require './_plugins/titlecase.rb' + require './plugins/titlecase.rb' args.with_defaults(:filename => 'new-post') open("#{source_dir}/_posts/#{Time.now.strftime('%Y-%m-%d')}-#{args.filename.downcase.gsub(/[ _]/, '-')}.#{post_format}", 'w') do |post| system "mkdir -p #{source_dir}/#{posts_dir}";