Sha256: 27ca882f46e06e111d1e5c1bdc3c64ee0841c5928308d5e19708ff4053bfdc56

Contents?: true

Size: 429 Bytes

Versions: 8

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 |v|
    option[:config] = v
  end
  opt.parse!(ARGV)
end

Fusuma::Runner.run(option)

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fusuma-0.3.5 exe/fusuma
fusuma-0.3.4 exe/fusuma
fusuma-0.3.3 exe/fusuma
fusuma-0.3.2 exe/fusuma
fusuma-0.3.1 exe/fusuma
fusuma-0.3.0 exe/fusuma
fusuma-0.2.7 exe/fusuma
fusuma-0.2.6 exe/fusuma