A rack middleware that converts ruby boolean value(true/false) to integer(1/0) in json response.
Add this line to your application's Gemfile:
gem 'rack-json_boolean_response', git: 'git://github.com/jiajiawang/rack-json_boolean_response.git'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install rack-json_boolean_response
In your config/application.rb
file add:
require 'rack/json_boolean_response'
And, within the config block:
config.middleware.use Rack::JSONBooleanResponse
- Fork it ( https://github.com/[my-github-username]/rack-json_boolean_response/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request