0.0
No commit activity in last 3 years
No release in over 3 years
Read the awful readme for more info.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
 Project Readme

This is a terrible idea

Jsony-Hash

Examples

hsh = {:a => {'b' => [1, {:c => :d}]}}.json!

hsh.a.b # => [1, {:c=>:d}]

hsh[:a]['b'] # => [1, {:c=>:d}]

hsh.a.b[1].c # => :d

json_object = {"a" => {"b" => {"c" => ["foo", {"d" => "bar"}]}}}.json!

json_object.a['b'].c[1].d # => bar