Sha256: a62235fd2051a4e7e9e84430f3e814f733a65f732e887079c1cfe12ba74f4287
Contents?: true
Size: 329 Bytes
Versions: 3
Compression:
Stored size: 329 Bytes
Contents
#!/usr/bin/env ruby require "optparse" require 'hibot' opts = { path: File.join(File.expand_path('~'), '.hibotrc') } OptionParser.new do |o| o.banner = "USAGE: #{$0} [options]" o.on("-c", "--config [CONFIG PATH]", "Set the location of the .hibotrc file") do |p| opts[:path] = p end end.parse! Hibot.launch(opts)
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
hibot-0.0.4 | bin/hibot |
hibot-0.0.2 | bin/hibot |
hibot-0.0.1 | bin/hibot |