class AtlassianAppVersions::PluginVersion

Public Instance Methods

relNotes() click to toggle source

Some plugin release don't have release notes, in which case return nil

# File lib/atlassian_app_versions.rb, line 340
def relNotes
    if versionJSON["releaseNotes"] then
        versionJSON["releaseNotes"].scan(/(?<=href=")[^"]+elease\+[nN]otes/)&.first&.strip
    end
end