GithubHelp home page GithubHelp logo

deepstruct's Introduction

Deepstruct

An adapter that wraps common ruby data-structures and makes them look like proper Objects.

struct = DeepStruct.wrap({"a" => { "b" => "bingo!"}})
struct.a.b
  => "bingo!"

Installation

gem install deepstruct

Or if you use the awesomeness that is bundler, you stick this in your Gemfile:

gem "deepstruct"

Usage

struct = DeepStruct.wrap({:awesome => [1,2,3, {"a" => "hello from the abyss"}]})
struct.awesome[3].a
  => "hello from the abyss"

You can also write back through the wrapper with indifferent access

struct = DeepStruct.wrap({:a => 1, "b" => 2})
struct.a = 10
struct.b = 20
struct
  => #<DeepStruct::HashWrapper {:a=>10, "b"=>20}> 

When you want to you can still use hash-style syntax when accessing your DeepStructs. These accessors implement indifferent access too.

struct = DeepStruct.wrap({:a => {1 => 'One', 2 => 'Two'}})
struct.a[1]
  => "One"
struct["a"][1]
  => "One"
struct["b"] = "Hello"
struct[:b]
  => "Hello"
struct.b
  => "Hello"

If DeepStruct is getting in your way, you can always get access to the raw content by unwrapping it:

struct = Deepstruct.wrap({"hello => "world"})
struct.unwrap
  => {"hello" => "world"}

DeepStruct is a perfect companion to your json-oriented application!

struct = DeepStruct.wrap(JSON.parse('{"full_name": "Don Corleone"}'))
puts struct.to_json
{"full_name":"Don Corleone"}

deepstruct's People

Contributors

kytrinyx avatar simen avatar

Watchers

 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.