No commit activity in last 3 years
No release in over 3 years
This is a rack middleware that convert params key between JavaScript app and Rails app.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

 Project Readme

Rack::ParamsKeyConverter

This is a rack middleware that convert params key between JavaScript app and Rails app.

For example, your JavaScript app posts below JSON (camelized key),

{ "userName": "Jotaro Kujo",
  "createdAt": "1989-03-18T09:45:00.000Z"
}

And your rails app can receive params as underscored key

puts params[:user_name] # "Jotaro Kujo"
puts params[:created_at] # "1989-03-18T09:45:00.000Z"

Your rails app's response as below (underscored key),

{ "user_name": "Noriaki Kakyoin",
  "created_at": "1989-03-18T09:45:00.000Z"
}

And JavaScript app can receive as camelized key.

{ "userName": "Noriaki Kakyoin",
  "createdAt": "1989-03-18T09:45:00.000Z"
}

Installation

Add this line to your application's Gemfile:

gem 'rack-params_key_converter'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-params_key_converter

Usage

Add below to your rails app's config/initializers

Rails.configuration.middleware.insert_after(ActionDispatch::ParamsParser, Rack::ParamsKeyConverter)

Contributing

  1. Fork it ( https://github.com/[my-github-username]/rack-params_key_converter/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

LiCENSE

MIT