Created
November 23, 2010 01:06
-
-
Save jsl/711058 to your computer and use it in GitHub Desktop.
cattr_reader
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# File activesupport/lib/active_support/core_ext/class/attribute_accessors.rb, line 10 | |
def cattr_reader(*syms) | |
options = syms.extract_options! | |
syms.each do |sym| | |
next if sym.is_a?(Hash) | |
class_eval("unless defined? @@\#{sym}\n@@\#{sym} = nil\nend\n\ndef self.\#{sym}\n@@\#{sym}\nend\n", __FILE__, __LINE__ + 1) | |
unless options[:instance_reader] == false | |
class_eval("def \#{sym}\n@@\#{sym}\nend\n", __FILE__, __LINE__ + 1) | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment