I'm using JBuilder to render the views of the JSON API part of my application. The problem I'm running into is that my DateTimes are being rendered like this:
"2013-07-02T17:03:18.000Z"
...when what I really want is this:
"2013-07-02T17:03:18Z"
I'm not sure where those decimals are coming from...
I'm rendering the field in the typical JBuilder way:
json.my_datetime_field
I have a date format initializer in my app:
Date::DATE_FORMATS[:default] = '%Y/%m/%d %Z'
Time::DATE_FORMATS[:default] = '%Y/%m/%d %H:%M:%S %Z'
Date::DATE_FORMATS[:month_day_year] = '%m-%d-%Y'
However, this doesn't seem to impact JBuilder, and that is good. I want ISO8601 format coming from my API. I'm on Rails 4.0.0 final, by the way.