Created
January 20, 2009 19:56
-
-
Save ivey/49630 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'fileutils' | |
class Jekyll < Thor | |
include FileUtils | |
method_options :format => :optional | |
def draft(name) | |
format = options[:format] || "markdown" | |
slug = name.downcase.gsub(/ +/,'-').gsub(/[^-\w]/,'').sub(/-+$/,'') | |
filename = slug + ".#{format}" | |
mkdir_p "_drafts" | |
if File.exists?("_drafts/#{filename}") | |
puts "#{filename} already exists!" | |
return | |
end | |
File.open("_drafts/#{filename}","w+") do |f| | |
f.puts "---" | |
f.puts "layout: post" | |
f.puts "title: #{name}" | |
f.puts "---" | |
end | |
puts "Created _drafts/#{filename}" | |
end | |
def publish(file=nil) | |
unless file | |
puts "Choose file:" | |
@files = Dir["_drafts/*"] | |
@files.each_with_index { |f,i| puts "#{i+1}: #{f}" } | |
print "> " | |
num = STDIN.gets | |
file = @files[num.to_i - 1] | |
end | |
now = Date.today.strftime("%Y-%m-%d").gsub(/-0/,'-') | |
mv file, "_posts/#{now}-#{File.basename(file)}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment