as_json(*)
public
Returns a hash, that will be turned into a JSON
object and represent this object.
# File ext/json/lib/json/add/date_time.rb, line 28
def as_json(*)
{
JSON.create_id => self.class.name,
'y' => year,
'm' => month,
'd' => day,
'H' => hour,
'M' => min,
'S' => sec,
'of' => offset.to_s,
'sg' => start,
}
end