Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for YAML version file and Rake task for version output #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
require "rubygems"
require 'rake'
require 'yaml'
require 'time'

SOURCE = "."
CONFIG = {
'version_file' => File.join(SOURCE, '_version.yml'),
'layouts' => File.join(SOURCE, '_layouts'),
'posts' => File.join(SOURCE, '_posts'),
'post_ext' => 'md',
}

def agree?(message)
valid_options = [ 'y', 'n' ]
answer = get_stdin("#{message} ").downcase[0]

if answer == 'y'
true
else
false
end
end

def get_stdin(message)
print message

STDIN.gets.chomp
end

desc "Begin a new post in #{CONFIG['posts']}"
task :post do
abort("rake aborted: '#{CONFIG['posts']}' directory not found.") unless FileTest.directory?(CONFIG['posts'])
title = ENV["title"] || "new-post"
tags = ENV["tags"] || "[]"
slug = title.downcase.strip.gsub(' ', '-').gsub(/[^\w-]/, '')

begin
date = (ENV['date'] ? Time.parse(ENV['date']) : Time.now).strftime('%Y-%m-%d')
rescue => e
puts "Error - date format must be YYYY-MM-DD, please check you typed it correctly!"
exit -1
end

filename = File.join(CONFIG['posts'], "#{date}-#{slug}.#{CONFIG['post_ext']}")
if File.exists?(filename)
abort('Rake task aborted.') if agree?("#{filename} already exists. Do you want to override it?") == false
end

puts "Creating a new post: #{filename}..."
open(filename, 'w') do |post|
post.puts "---"
post.puts "layout: post"
post.puts "title: \"#{title.gsub(/-/,' ')}\""
post.puts 'description: ""'
post.puts "---"
post.puts ""
post.puts "Please edit this post!"
end
if File.size(filename) > 0
puts "Successfully created post file. Go edit it now!"
end
end

desc "Get the current version of Daktilo"
task :version do
version_file_contents = YAML.load_file(CONFIG['version_file'])

if version_file_contents['version']
puts "Daktilo version #{version_file_contents['version']}."
else
puts "Could not find version file."
end
end
1 change: 1 addition & 0 deletions _version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version: 1.0.0