# File lib/ramaze/bin/create.rb, line 41
      def initialize
        @options = {
          :force => false
        }

        @opts = OptionParser.new do |opt|
          opt.banner         = Banner
          opt.summary_indent = '  '

          opt.separator "\nOptions:\n"

          opt.on('-f', '--force', 'Overwrites existing directories') do
            @options[:force] = true
          end

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