#!/usr/bin/env ruby
$:.unshift(File.dirname(__FILE__) + "/../../lib")
require 'git-style-binary/command'

GitStyleBinary.command do
  short_desc "list blog postings"
  banner <<-EOS
SYNOPSIS 
      #{command.full_name} #{all_options_string}

Lists the posts on the blog

EOS
  run do |command|
    puts "listing blog posts"
  end
end

