Skip to content

Instantly share code, notes, and snippets.

@iande
Created June 1, 2011 11:51
Show Gist options
  • Save iande/1002161 to your computer and use it in GitHub Desktop.
Save iande/1002161 to your computer and use it in GitHub Desktop.
module MyMod
class << self
attr_reader :my_reader
end
attr_reader :my_other_reader
module_function :my_other_reader
end
MyMod.my_reader # => nil
MyMod.my_other_reader # => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment