class Spaceship::Tunes::Tester

monkey patched move this to spaceship

Public Instance Methods

full_version() click to toggle source
# File lib/pilot/tester_util.rb, line 10
def full_version
  return nil unless latest_install_date
  latest_installed_version = latest_installed_version_number
  latest_installed_short_version = latest_installed_build_number
  "#{latest_installed_version} (#{latest_installed_short_version})"
end
pretty_install_date() click to toggle source
# File lib/pilot/tester_util.rb, line 17
def pretty_install_date
  return nil unless latest_install_date
  Time.at((latest_install_date / 1000)).strftime("%m/%d/%y %H:%M")
end