Sha256: c107454d5e13656f77cb3fab47b552cc918806762f576bac74c276edd977e1eb

Contents?: true

Size: 536 Bytes

Versions: 2

Compression:

Stored size: 536 Bytes

Contents

#!/usr/bin/env ruby

require 'markdown_helper'

def usage
  dir_path = File.dirname(File.absolute_path(__FILE__))
  file_path = File.join(
                      dir_path,
                      'usage',
                      'include.txt'
  )
  puts File.read(file_path)
  exit
end

template_file_path, markdown_file_path = ARGV

usage unless ARGV.size == 2
usage unless File.readable?(template_file_path)
usage unless File.writable?(File.dirname(markdown_file_path))

MarkdownHelper.new.include(template_file_path, markdown_file_path)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
markdown_helper-0.1.5 bin/include
markdown_helper-0.1.4 bin/include