Sha256: 2c3924db95a0d9233e87f73f1c1fbd0e29e8eb0149c93b67bfd0cd13368c29b6

Contents?: true

Size: 390 Bytes

Versions: 1

Compression:

Stored size: 390 Bytes

Contents

#!/usr/bin/env ruby

require 'optparse'
require 'log_simulator'

filepath =''

OptionParser.new do |opts|
  opts.banner = "Usage: Debug Socket [options]"

  opts.on('-p' , '--path filePath',String,'Log File Path') do |path|
    filepath = path
  end

  opts.on_tail('-h', '--help', 'Show this message') { puts opts; exit }

end.parse!(ARGV)

LogSimulator::PlusLogSimulator.start(filepath)

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
log_simulator-0.0.3 bin/simulate