Sha256: 9ca3f8f0173376751e2b8a7d4b89c7bd774c979163e3131e654e73498f1fd759
Contents?: true
Size: 878 Bytes
Versions: 1
Compression:
Stored size: 878 Bytes
Contents
module RedisRing class CLI COMMANDS = [:help, :start] attr_reader :argv def initialize(argv) @argv = argv end def run command = argv[0] if command.nil? || !COMMANDS.include?(command.to_sym) usage exit(1) else send(command, *argv[1..-1]) exit(0) end end protected def help usage end def usage puts <<USAGE Usage: #{$0} command [arguments] Commands: help - prints this message start [config_file] - starts application USAGE end def start(config_file = nil) config = config_file ? Configuration.from_yml_file(config_file) : Configuration.new Application.instance = Application.new(config) Application.instance.start WebInterface.run!(:port => config.base_port) Application.instance.stop end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
redis_ring-0.0.2 | lib/redis_ring/cli.rb |