class Tux::Runner

Public Class Methods

parse_option(option, argv) click to toggle source
Calls superclass method
# File lib/tux/runner.rb, line 6
def self.parse_option(option, argv)
  if option[/(?:-c|--config)=?(.*)/]
    ENV['RACK_CONFIG'] = $1.empty? ? argv.shift.to_s : $1
  else
    super
  end
end