Pavel Kozlov

Results 5 issues of Pavel Kozlov

For example: ``` class Person include Tainbox attribute :name, default: 'Vasya', writer: false end Person.new.name # => nil ``` It is expected to be 'Vasya'.

Is it by design? ```ruby > Proc.new{|obj|obj.x}.arity => 1 > Proc.new(&:x).arity => -2 ``` ```ruby > class A < SmartCore::Operation; param :text, finalize: Proc.new{|obj|obj.x}; end => nil > class A...

need_investigation