Closed ASnow closed 8 years ago
It will be cool to implement DSL for duplications reduce.
class Example extend Memoist mem :method_name do |args| end end
It is not necessary with ruby 2.1, it can be written as:
class Example extend Memoist memoize def method_name(args) end end
@mehanoid that's what I do, yeah.
It will be cool to implement DSL for duplications reduce.