Sha256: ddd7d3058da2b4008c078f8e4ac8b877a693131aaec9e298ce1821472d0c5223
Contents?: true
Size: 366 Bytes
Versions: 1
Compression:
Stored size: 366 Bytes
Contents
#!/usr/bin/env ruby require 'optparse' 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.2 | bin/simulate |