Class: GitMaintain::RDMACoreRepo
Constant Summary collapse
- AZURE_MIN_VERSION =
18
Constants inherited from Repo
GitMaintain::Repo::ACTION_HELP, GitMaintain::Repo::ACTION_LIST
Instance Attribute Summary
Attributes inherited from Repo
#name, #path, #remote_stable, #remote_valid, #stable_repo, #valid_repo
Instance Method Summary collapse
Methods inherited from Repo
#api, check_opts, #createRelease, execAction, #findStableBase, #find_alts, #genReleaseNotif, #getBranchList, #getCommitHeadline, #getCommitSubj, #getGitConfig, #getStableBranchList, #getSuffixList, #getUnreleasedTags, #get_new_token, #initialize, #list_branches, #list_suffixes, load, #log, #run, #runBash, #runGit, #runGitImap, #runGitInteractive, #runSystem, #stableUpdate, #submit_release, #summary, #token, #versionToLocalBranch, #versionToStableBranch
Constructor Details
This class inherits a constructor from GitMaintain::Repo
Instance Method Details
#submitReleases(opts, new_tags) ⇒ Object
123 124 125 126 127 128 129 130 |
# File 'lib/addons/RDMACore.rb', line 123 def submitReleases(opts, ) .each(){|tag| next if tag !~ /v([0-9]*)\.[0-9]*/ major=$1.to_i # Starting from v27, do not create the github release ourself as this is done by Azure createRelease(opts, tag, major < AZURE_MIN_VERSION) } end |