class Repokeeper::Analyzers::RemoteBranchesCount

Public Instance Methods

max_branches() click to toggle source
# File lib/repokeeper/analyzers/branches/remote_branches_count.rb, line 6
def max_branches
  @config['max_remote_branches']
end

Private Instance Methods

get_branches(repo) click to toggle source
# File lib/repokeeper/analyzers/branches/remote_branches_count.rb, line 12
def get_branches(repo)
  repo.remote_branches
end
message() click to toggle source
# File lib/repokeeper/analyzers/branches/remote_branches_count.rb, line 16
def message
  'too many remote branches'
end