Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

symbolized

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

symbolized

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Symbolized

Build Status

Symbolized provides a Hash with indifferent access, but with keys stored internally as symbols. This is particularly useful when you have a very big amount of hashes that share the same keys, and it may become inefficient to keep all these identical keys as strings. An example of this case is when you have data processing pipelines that process millions of hashes with the same keys.

Installation

You can either install it manually:

% [sudo] gem install symbolized

Or include it in your Gemfile:

gem 'symbolized'

And then run bundle install.

Usage

require 'symbolized'

# You can create a SymbolizedHash directly:

symbolized_hash = SymbolizedHash.new
symbolized_hash['a'] = 'b'
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a]  #=> 'b'
symbolized_hash.keys #=> [:a]

# Or initialize it with a normal hash:

symbolized_hash = SymbolizedHash.new({'a' => 'b'})
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a]  #=> 'b'
symbolized_hash.keys #=> [:a]

# Or use the Hash#to_symbolized_hash core extension:

h = { 'a' => 'b' }
h['a'] #=> 'b'
h[:a]  #=> nil
h.keys #=> ['a']

symbolized_hash = h.to_symbolized_hash
symbolized_hash['a'] #=> 'b'
symbolized_hash[:a]  #=> 'b'
symbolized_hash.keys #=> [:a]

The gem provides almost the same methods and functionality provided by ActiveSupport's HashWithIndifferentAccess, while storing keys internally as Symbols.

ActiveSupport Compatibility

This gem is built with intent to be as much as possible compatible with ActiveSupport. You can include both Symbolized and ActiveSupport, and you are guaranteed to get ActiveSupport functionality and core extensions, and still have Symbolized core extension and class.

Testing

Checkout travis.yml to see which Ruby versions the gem has been tested against. Alternatively, if you want to test it yourself, you can clone the repo, run bundle install and then run rake test.

Suggestions, Discussions and Issues

Please propose suggestions, open discussions, or report bugs and issues here.

Contributing

  1. Fork the repo
  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

Credits

The current code of this gem is heavily based on ActiveSupport 4.2 HashWithIndifferentAccess. Some parts are direct clones, other parts have been modified and/or refactored.

License

Copyright (c) 2015 Tamer Shlash (@TamerShlash). Released under the MIT License.

FAQs

Package last updated on 19 Jul 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc