Class: Time
Instance Method Summary collapse
Instance Method Details
#ffi_yajl(rb_yajl_gen, state) ⇒ Object
327 328 329 330 331 332 |
# File 'ext/ffi_yajl/ext/encoder/encoder.c', line 327 def ffi_yajl(yajl_gen, state) str = strftime "%Y-%m-%d %H:%M:%S %z" if ( status = FFI_Yajl.yajl_gen_string(yajl_gen, str, str.bytesize) ) != 0 FFI_Yajl::Encoder.raise_error_for_status(status, str) end end |