Sha256: b455cd39aff371ef7ff1730920372d5562288b77927bab6787313af98a8468ea

Contents?: true

Size: 429 Bytes

Versions: 3

Compression:

Stored size: 429 Bytes

Contents

#!/usr/bin/env ruby

require 'optparse'
require_relative '../lib/fusuma'

option = {}
OptionParser.new do |opt|
  opt.on('-v',
         '--verbose',
         'Shows details about the results of running fusuma') do |v|
    option[:verbose] = v
  end
  opt.on('-c',
         '--config=path/to/file',
         'Use an alternative config file') do |c|
    option[:config] = c
  end
  opt.parse!(ARGV)
end

Fusuma::Runner.run(option)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fusuma-0.4.1 exe/fusuma
fusuma-0.4.0 exe/fusuma
fusuma-0.3.7 exe/fusuma