0.01
No commit activity in last 3 years
No release in over 3 years
Extends ActiveSupport's symbolize_keys to recursively symbolize keys at all levels in a Hash
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Runtime

 Project Readme

HashSymbolizer

Extends ActiveSupport's symbolize_keys to recursively symbolize all keys in a gem. By default, it is fully backwards compatible with ActiveSupport's symbolize_keys method. If the recursive flag is set to true however and it recursively symbolizes any values which are hashes.

Installation

Add this line to your application's Gemfile:

gem 'hash_symbolizer'

And then execute:

$ bundle

Or install it yourself as:

$ gem install hash_symbolizer

Usage

gem install hash_symbolizer or include it in your Gemfile and then run bundle install.

Examples:

{"a" => {"b" => 1}}.symbolize_keys = {:a => {"b" => 1}}

{"a" => {"b" => 1}}.symbolize_keys(true) = {:a => {:b => 1}}

{"a" => {"b" => 1}}.symbolize_keys! = {:a => {"b" => 1}}

{"a" => {"b" => 1}}.symbolize_keys!(true) = {:a => {:b => 1}}

Works on Ruby 1.9.2-p290, 1.9.3-p125, ActiveSupport version 3.2.2 as of now.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request