Flowdock
scan() public

No documentation

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

Hide source
# File lib/erb.rb, line 395
      def scan
        @src.each do |line|
          line.split(SplitRegexp).each do |token|
            next if token.empty?
            yield(token)
          end
        end
      end
Register or log in to add new notes.