summaryrefslogtreecommitdiff
path: root/app/helpers/time_helper.rb
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-06 14:00:20 -0500
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-06 14:00:20 -0500
commite9bd8b615b9a0a88aaf7bcc13f5df73deef74805 (patch)
tree597d1b0d4da57f697584605cb55830dc63c14b99 /app/helpers/time_helper.rb
parent96684317aa56b8754c4762012554b828db4293af (diff)
downloadgitlab-ce-e9bd8b615b9a0a88aaf7bcc13f5df73deef74805.tar.gz
Update time format of duration18181-pipeline-duration
Diffstat (limited to 'app/helpers/time_helper.rb')
-rw-r--r--app/helpers/time_helper.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/helpers/time_helper.rb b/app/helpers/time_helper.rb
index b04b0a5114c..d1086025ad5 100644
--- a/app/helpers/time_helper.rb
+++ b/app/helpers/time_helper.rb
@@ -23,4 +23,11 @@ module TimeHelper
def date_from_to(from, to)
"#{from.to_s(:short)} - #{to.to_s(:short)}"
end
+
+ def duration_in_numbers(finished_at, started_at)
+ diff_in_seconds = finished_at.to_i - started_at.to_i
+ time_format = diff_in_seconds < 3600 ? "%M:%S" : "%H:%M:%S"
+
+ Time.at(diff_in_seconds).utc.strftime(time_format)
+ end
end