Created
February 11, 2015 23:52
-
-
Save revans/8989139054ebda481fcb to your computer and use it in GitHub Desktop.
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
module Test | |
extend self | |
def name | |
@name ||= "My name" | |
end | |
def read | |
@name | |
end | |
end | |
Test.name # => "My name" | |
Test.read # => "My name" | |
class Demo | |
include Test | |
end | |
demo = Demo.new | |
demo.my # => "My name" | |
demo.read # => "My name" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment