simple_json
simple_json copied to clipboard
A simple & fast view solution for Rails JSON rendering.
Results
2
simple_json issues
Sort by
recently updated
recently updated
newest added
> application.simple_json.rb ```ruby { success: true, data: yield } ``` > some_action.simple_json.rb ```ruby { test_one: 'success', test_two: 'success' } ``` Expected Output: ```ruby { success: true, data: { test_one: 'success',...
Is there a way to pass explicit status codes using this library? As a work around, I've been using the following code in my action: ```ruby render status: :created ```...