Class: EventQ::SerializationProviders::JRuby::Oj::DateWriter
- Inherits:
-
AttributeWriter
- Object
- AttributeWriter
- EventQ::SerializationProviders::JRuby::Oj::DateWriter
- Defined in:
- lib/eventq_base/serialization_providers/jruby/oj/date_writer.rb
Instance Method Summary collapse
Methods inherited from AttributeWriter
Instance Method Details
#exec(obj) ⇒ Object
9 10 11 12 13 14 15 16 17 |
# File 'lib/eventq_base/serialization_providers/jruby/oj/date_writer.rb', line 9 def exec(obj) { '^O': 'Date', year: obj.year, month: obj.month, day: obj.day, start: obj.start } end |
#valid?(obj) ⇒ Boolean
6 7 8 |
# File 'lib/eventq_base/serialization_providers/jruby/oj/date_writer.rb', line 6 def valid?(obj) obj.is_a?(Date) && !obj.is_a?(DateTime) end |