ManageIQ/miq_bot

View on GitHub
app/helpers/application_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ApplicationHelper
  def application_version
    MiqBot.version
  end

  def time_ago_in_words_with_nil_check(time)
    time.nil? ? "Never" : "#{time_ago_in_words(time).capitalize} ago"
  end
end