method

parse

Importance_0
v7.2.3 - Show latest stable - 0 notes - Class: Parser
parse() public

No documentation

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

Hide source
# File tools/rail_inspector/lib/rail_inspector/changelog.rb, line 122
      def parse
        until @buffer.eos?
          if peek_release_header?
            pop_entry
            next parse_release_header
          end

          if peek_footer?
            pop_entry
            next parse_footer
          end

          pop_entry if peek_probably_header?

          parse_line
        end

        @entries
      end
Register or log in to add new notes.