Project

hash_ish

0.0
No commit activity in last 3 years
No release in over 3 years
A Hashie::Mash knockoff
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0
~> 3.3

Runtime

~> 1.8
~> 0.1
 Project Readme

HashIsh

  • A Hashie::Mash knockoff
  • This is a prototype
  • Built and tested with Ruby 2.2.3

Setup

Add it to your Gemfile or...

gem install hash_ish

Test

bundle exec rspec

Usage

require 'hash_ish'

# access hash keys with method calls
hash     = { a: 'b', c: { d: 'e' }, f: {} }
hash_ish = HashIsh.new(hash)
hash_ish.a         # returns 'b'
hash_ish.a = ''    # raises NoMethodError
hash_ish[:a]       # returns 'b'
hash_ish[:a] = ''  # raises NoMethodError
hash_ish.c         # returns instance of HashIsh w/ hash of { d: 'e' }
hash_ish.c.class   # returns HashIsh
hash_ish[:c]       # returns { d: 'e' }
hash_ish[:c].class # returns Hash
hash_ish.c.d       # returns 'e'
hash_ish.f         # returns {}
hash_ish.f.class   # returns Hash
hash_ish[:f]       # returns {}
hash_ish[:f].class # returns Hash

# set default values
hash     = { a: nil, b: { c: false }, d: { e: '>_<' } }
defaults = { a: 123, b: { c: true  }, d: { e: 'ಠ_ಠ' } }
hash_ish = HashIsh.new(hash, defaults)
hash_ish.a   # returns 123,  overrides falsey nil
hash_ish.b.c # returns true, overrides falsey false
hash_ish.d.e # returns 'lol', not overriden due to 'lol' being truthy

License

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