module Snafu::Util

Contains convenience methods that don't seem to fit anywhere else

Public Instance Methods

glitch_time(timestamp = nil) click to toggle source
# File lib/snafu/util.rb, line 4
def glitch_time(timestamp = nil)
  if timestamp
    Snafu::Models::GlitchTime.new(timestamp)
  else
    Snafu::Models::GlitchTime.new
  end
end