class Time

def local_time(*args)

Wraps class method +time_with_datetime_fallback+ with +utc_or_local+ set to :local.

*DEPRECATED*: Use +Time#local+ instead.
def local_time(*args)
  ActiveSupport::Deprecation.warn 'local_time is deprecated. Use Time#local instead', caller
  time_with_datetime_fallback(:local, *args)
end