Chad Taylor
Chad Taylor
Eagerly waiting for the 2.0 release - how is that going?
Eagerly waiting for the 2.0 release... has that been dropped?
+1 I'm getting the same error. This happened after upgrading from Rails 3.2 to 4.0.
+1, please lord.
Since each method will vary in which model will be rendered (ie: most of the time a person model, rarely will be an invoice model). So putting it on the...
What else do you need to see from my end to narrow down the issue?
I even tried to change from `render json: people, represent_items_with:Api::V2::PersonRepresenter` to `respond_with people, represent_items_with:Api::V2::PersonRepresenter` and got the following error: `ActionController::UnknownFormat` Am hitting a wall here but going to try few...
I switched to `respond_with` with the `respond_to` on the controller level (see my codes below) -- and got this error: `ActionController::UnknownFormat` The only thing working for me is using `render`...
``` Started GET "/v2/people" for 127.0.0.1 at 2015-02-03 14:15:35 -0800 Processing by Api::V2::PeopleController#index as HTML Person Load (0.5ms) SELECT "people".* FROM "people" ORDER BY "people"."id" ASC LIMIT 1 Completed 406...
(want to say how much I appreciate your help here!)