backport_dig

backport_dig is the backport of Hash#dig, Array#dig and OpenStruct#dig in Ruby 2.3 to older Ruby versions.


License
MIT
Install
gem install backport_dig -v 1.0.0

Documentation

backport_dig Build Status Gem Version

backport_dig is the backport of Hash#dig, Array#dig and OpenStruct#dig in Ruby 2.3 to older Ruby versions.

The best way is to use Ruby 2.3 or later. Because you can use original dig methods and so on.

Installation

Add these lines to your application's Gemfile:

gem 'backport_dig'

And then execute:

$ bundle

Or install it yourself as:

$ gem install backport_dig

And require it as:

require 'backport_dig'

Synopsis

h = {foo: {bar: {baz: 1}}}
h.dig(:foo, :bar, :baz) #=> 1

a = [[1, [2, 3]]]
a.dig(0, 1, 1) #=> 3

Supported Versions

  • Ruby 2.0
  • Ruby 2.1
  • Ruby 2.2

Ruby 2.3 incompatible

  • Struct#dig is not supported

Contributing

  1. Fork it
  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 new Pull Request

License

backport_dig is released under the MIT License.

Get the original codes

Special Thanks

  • Ruby Development Team
  • Pay homage to ruby_dig