Method: Quebert::CommandLineRunner#initialize

Defined in:
lib/quebert/command_line_runner.rb

#initialize(argv) ⇒ CommandLineRunner

Returns a new instance of CommandLineRunner.



8
9
10
11
12
13
14
15
16
17
# File 'lib/quebert/command_line_runner.rb', line 8

def initialize(argv)
  @argv = argv

  # Default options values
  @options = {
    :chdir  => Dir.pwd
  }

  parse!
end