0.0
No commit activity in last 3 years
No release in over 3 years
Hash assertions
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.3
>= 0
>= 0
 Project Readme

hash_assertions

Build Status

Hash assertions: assert required keys, assert keys with values

Installation

Add this line to your application's Gemfile:

gem "hash_assertions"

And then execute:

$ bundle

Or install it yourself as:

$ gem install hash_assertions

and require it:

require "hash_assertions"

Usage

assert_required_keys

require "hash_assertions/assert_required_keys"

# Raises nothing
{ foo: "bar", baz: "qux" }.assert_required_keys(:foo, :baz)

# Raises ArgumentError, "Missing required key: baz"
{ foo: "bar" }.assert_required_keys(:foo, :baz)

# Raises ArgumentError, "Missing required key: baz"
{ foo: "bar", baz: "qux" }.assert_required_keys(:foo, "baz")

# Raises ArgumentError, "Missing required key: [:foo, :baz]"
# (assert_required_keys doesn't flatten arguments!)
{ foo: "bar", baz: "qux" }.assert_required_keys([:foo, :baz])

assert_keys_with_values

require "hash_assertions/assert_keys_with_values"

# Raises nothing
{ foo: "bar", baz: "qux" }.assert_keys_with_values(:foo, :baz)

# Raises nothing
# (blank string or empty array is treated as valid value)
{ foo: "bar", baz: "" }.assert_keys_with_values(:foo, :baz)

# Raises ArgumentError, "No value for key: baz"
{ foo: "bar", baz: nil }.assert_keys_with_values(:foo, :baz)

# Raises ArgumentError, "No value for key: baz"
{ foo: "bar", baz: "qux" }.assert_keys_with_values(:foo, "baz")

# Raises ArgumentError, "No value for key: [:foo, :baz]"
# (assert_keys_with_values doesn't flatten arguments!)
{ foo: "bar", baz: "qux" }.assert_keys_with_values([:foo, :baz])

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