0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
RequiredStruct Creates a Struct that enforces the specified keyword at initialization
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies
 Project Readme

RequiredStruct

RequiredStruct Creates a Struct that enforces the specified keyword at initialization

Installation

Install the gem and add to the application's Gemfile by executing:

$ bundle add required_struct

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install required_struct

Usage

require 'required_struct'

dog = RequiredStruct.new("Dog", :name, :age)
fred = dog.new(name: "fred", age: 5)

choco = dog.new(name: "choco")
#=> Missing Keywords: age (RequiredStruct::StructArgumentError)