# File lib/ramaze/bin/restart.rb, line 40
      def initialize
        @options = OptionParser.new do |opt|
          opt.banner         = Banner
          opt.summary_indent = '  '

          opt.separator "\nOptions:\n"

          opt.on('-h', '--help', 'Shows this help message') do
            puts @options
            exit
          end

          opt.on(
            '-P',
            '--pid FILE',
            'Uses the PID to kill the application'
          ) do |pid|
            @pid = pid
          end
        end
      end