Git Product home page Git Product logo

property_hash's Introduction

PropertyHash

PropertyHash CI Status

Access a nested Ruby Hash using Java-style properties as keys.

Usage

require "property_hash"
require "pp"

h = {
  :a => {
    :b => 1,
    :c => { :d => "DEEEE" },
    :x => 888,
    :y => [9999]
  },
  :b => {
    :zeee => 888
  }
}

ph = PropertyHash.new(h)

p ph["a.c.d"]  # DEEEE
p ph["b.zeee"] # 888

ph["a.c.x"] = "X"

pp ph.keys    # ["a.b", "a.c.d", "a.x", "a.y", "b.zeee", "a.c.x"]
pp ph.values  # [1, "DEEEE", 888, [9999], 888, "X"]

ph.each { |k, v| p k }
pp ph.to_h  # h but with :a => { :c => { :x => "X" } }

Installation

Add this line to your application's Gemfile:

gem "property_hash"

And then execute:

bundle

Or install it yourself as:

gem install property_hash

See Also

License

The gem is available as open source under the terms of the MIT License.

property_hash's People

Contributors

sshaw avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.