Skip to content

Instantly share code, notes, and snippets.

@banister
Created March 1, 2012 03:03
Show Gist options
  • Save banister/1b0b43308373d06d79b9 to your computer and use it in GitHub Desktop.
Save banister/1b0b43308373d06d79b9 to your computer and use it in GitHub Desktop.
class Hello
def self.attr_accessor name
puts "got #{name}"
super
end
attr_accessor :john
end
# => nil
Hello.new.john
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment