tainbox icon indicating copy to clipboard operation
tainbox copied to clipboard

Strict mode

Open JelF opened this issue 5 years ago • 0 comments

I.e.

class Foo
  include Tainbox
  self.strict_constructor = true
 
  attribute :foo, default: :bar
end

Foo.new(foo: 123).foo # => 123
Foo.new.foo # => :bar
Foo.new(bar: 123) # => raise ArgumentError

JelF avatar Feb 25 '20 11:02 JelF