Im trying to use the rabl templating system from within rails-api.
rabl looks for templates in the view path, which rails-api omits.
How would i setup rabl-rails, i have included the below lines into my Controller.
include ActionController::MimeResponds
include ActionController::ImplicitRender
respond_to :json
However: json: @deal uses standard rails rendered. Renderer.json(@deal) in undefined, i assume it would be available with rabl.
Any help would be appreciated.