Sha256: 2b6532badc9c0f66c7b799cbdd1e3e2bf14bebe241c07effc35d1db90cbba461
Contents?: true
Size: 435 Bytes
Versions: 14
Compression:
Stored size: 435 Bytes
Contents
require 'rubygems' require 'mixlib/cli' class CliParser include Mixlib::CLI option :output, :short => "-o OUTPUT", :long => "--output OUTPUT", :description => "Name of the file to write the converted markdown into" option :wrap, :short => "-w", :long => "--wrap", :description => "Wrap the markdown in html and add styles", :boolean => true def run(argv=ARGV) parse_options(argv) end end
Version data entries
14 entries across 14 versions & 1 rubygems