method

pop_entry

Importance_0
v8.0.0 - Show latest stable - 0 notes - Class: Parser
pop_entry() private

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 184
        def pop_entry
          # Ensure we don't pop an entry if we only see newlines and the footer
          return unless @lines.any? { |line| line.match?(/\S/) }

          @entries << Changelog::Entry.new(@lines, @current_line - @lines.length)
          @lines = []
        end
Register or log in to add new notes.