ClosedStruct
ClosedStructs work like OpenStruct, with the exception of being immutable and not responding to methods which haven't been listed in the input hash
Installation
Add this line to your application's Gemfile:
gem 'closed_struct'
And then execute:
$ bundle
Or install it yourself as:
$ gem install closed_struct
Usage
ClosedStruct.new(:a => :b).a
ClosedStruct.new("a" => :b).a
ClosedStruct.new(:a => :b).c
ClosedStruct.new(:a => :b, "a" => :b)
ClosedStruct.new(:a => :b) do
def some_method(whatever)
:something
end
end
Contributing
- Fork it ( https://github.com/obrok/closed_struct/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request