Flowdock
method

scan

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: Scanner
scan() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File actionpack/lib/action_dispatch/journey/scanner.rb, line 44
        def scan
          case
            # /
          when @ss.skip(/\//)
            [:SLASH, "/"]
          when @ss.skip(/\(/)
            [:LPAREN, "("]
          when @ss.skip(/\)/)
            [:RPAREN, ")"]
          when @ss.skip(/\|/)
            [:OR, "|"]
          when @ss.skip(/\./)
            [:DOT, "."]
          when text = dedup_scan(/:\w+/)
            [:SYMBOL, text]
          when text = dedup_scan(/\*\w+/)
            [:STAR, text]
          when text = @ss.scan(/(?:[\w%\-~!$&'*+,;=@]|\\[:()])+/)
            text.tr! "\\", ""
            [:LITERAL, -text]
            # any char
          when text = dedup_scan(/./)
            [:LITERAL, text]
          end
        end
Register or log in to add new notes.