class ActiveSupport::TimeWithZone

def respond_to_missing?(sym, include_priv)

responds to.
Ensure proxy class responds to all methods that underlying time instance
def respond_to_missing?(sym, include_priv)
  return false if sym.to_sym == :acts_like_date?
  time.respond_to?(sym, include_priv)
end