method

end_of_notes?

rails latest stable - Class: Releaser

Method not available on this version

This method is only available on newer versions. The first available version (v7.2.3) is shown here.

end_of_notes?(contents)
private

No documentation available.

# File tools/releaser/lib/releaser.rb, line 331
    def end_of_notes?(contents)
      line = contents.first

      line =~ /^## Rails \d+\.\d+\.\d+.*$/ ||
        line =~ /^Please check.*for previous changes\.$/ ||
        contents.empty?
    end