From: "avdi (Avdi Grimm)" Date: 2013-07-17T00:35:10+09:00 Subject: [ruby-core:56046] [CommonRuby - Feature #8635] attr_accessor with default block Issue #8635 has been updated by avdi (Avdi Grimm). Just adding some prior art... There have been many, many takes on this in various gems, but I thought I'd drop in a note about https://github.com/ahoward/fattr, which is my personal favorite and a gem I've used happily for many years. It might provide some implementation inspiration. ---------------------------------------- Feature #8635: attr_accessor with default block https://bugs.ruby-lang.org/issues/8635#change-40534 Author: judofyr (Magnus Holm) Status: Open Priority: Normal Assignee: Category: Target version: =begin It's quite common to define attributes (like attr_reader, attr_accessor) with default values. It would be useful if Ruby provided a helper method for this case. attr_accessor and attr_reader can support this nicely using a default block: class Person # (1) Simple approach attr_writer :name def name @name ||= 'Hello' end # (2) nil-safe approach attr_writer :name def name return @name if defined? @name @name = 'Hello' end # (3) This proposal attr_accessor :name do 'Hello' end end p = Person.new p.instance_variable_get(:@name) # => nil p.name # => 'Hello' p.instance_variable_get(:@name) # => 'Hello' Problems with current approaches: * The reader and the writer looks widely different * Solution 1 doesn't work as intended when the default value may evaulate to nil/false * Solution 2 requires you to write the attribute name five times =end -- http://bugs.ruby-lang.org/