class Transit::Rails::VerboseTimeWithZoneHandler

Public Class Methods

new() click to toggle source
# File lib/transit/rails/handlers.rb, line 24
def initialize
  @h = Transit::WriteHandlers::VerboseTimeHandler.new
end

Public Instance Methods

rep(o) click to toggle source
# File lib/transit/rails/handlers.rb, line 32
def rep(o)
  @h.rep(o)
end
string_rep(o) click to toggle source
# File lib/transit/rails/handlers.rb, line 36
def string_rep(o)
  @h.string_rep(o.to_time)
end
tag(o) click to toggle source
# File lib/transit/rails/handlers.rb, line 28
def tag(o)
  @h.tag(o)
end