Class: DateTime

Inherits:
Object show all
Defined in:
lib/fiveruns/json/add/core.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.fjson_create(object) ⇒ Object



46
47
48
49
50
51
52
53
54
55
56
# File 'lib/fiveruns/json/add/core.rb', line 46

def self.fjson_create(object)
  args = object.values_at('y', 'm', 'd', 'H', 'M', 'S')
  of_a, of_b = object['of'].split('/')
  if of_b and of_b != '0'
    args << Rational(of_a.to_i, of_b.to_i)
  else
    args << of_a
  end
  args << object['sg']
  civil(*args)
end

Instance Method Details

#to_fjson(*args) ⇒ Object



60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/fiveruns/json/add/core.rb', line 60

def to_fjson(*args)
  {
    'json_class' => self.class.name,
    'y' => year,
    'm' => month,
    'd' => day,
    'H' => hour,
    'M' => min,
    'S' => sec,
    'of' => offset.to_s,
    'sg' => start,
  }.to_fjson(*args)
end