summaryrefslogtreecommitdiff
path: root/app/models/ci/commit.rb
diff options
context:
space:
mode:
authorKamil Trzcinski <ayufan@ayufan.eu>2015-10-12 16:39:08 +0200
committerKamil Trzcinski <ayufan@ayufan.eu>2015-10-12 16:39:08 +0200
commit5cd504ed331dd23d17709285237945fb867978a8 (patch)
treed6da698677f7d1cf3cd6a611a587e86e51d0396b /app/models/ci/commit.rb
parent2e9c1608e56a20b93608ddcd569c6a45d3a229eb (diff)
downloadgitlab-ce-5cd504ed331dd23d17709285237945fb867978a8.tar.gz
Rename builds_without_retry to latest_builds
Diffstat (limited to 'app/models/ci/commit.rb')
-rw-r--r--app/models/ci/commit.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/models/ci/commit.rb b/app/models/ci/commit.rb
index 201b6f62b86..296890c5e7c 100644
--- a/app/models/ci/commit.rb
+++ b/app/models/ci/commit.rb
@@ -48,7 +48,7 @@ module Ci
end
def retry
- builds_without_retry.each do |build|
+ latest_builds.each do |build|
Ci::Build.retry(build)
end
end
@@ -113,12 +113,12 @@ module Ci
@latest_statuses ||= statuses.latest.to_a
end
- def builds_without_retry
- @builds_without_retry ||= builds.latest.to_a
+ def latest_builds
+ @latest_builds ||= builds.latest.to_a
end
- def builds_without_retry_for_ref(ref)
- builds_without_retry.select { |build| build.ref == ref }
+ def latest_builds_for_ref(ref)
+ latest_builds.select { |build| build.ref == ref }
end
def retried
@@ -181,7 +181,7 @@ module Ci
def coverage
if project.coverage_enabled?
- coverage_array = builds_without_retry.map(&:coverage).compact
+ coverage_array = latest_builds.map(&:coverage).compact
if coverage_array.size >= 1
'%.2f' % (coverage_array.reduce(:+) / coverage_array.size)
end
@@ -189,7 +189,7 @@ module Ci
end
def matrix_for_ref?(ref)
- builds_without_retry_for_ref(ref).size > 1
+ latest_builds_for_ref(ref).size > 1
end
def config_processor