Skip to content

Instantly share code, notes, and snippets.

@thiagoa
Created December 19, 2016 13:28
Show Gist options
  • Save thiagoa/21ab903d323e132c042599fc0176b532 to your computer and use it in GitHub Desktop.
Save thiagoa/21ab903d323e132c042599fc0176b532 to your computer and use it in GitHub Desktop.
OneTwoThree = Module.new do
def one
puts 'one was defined as an instance method'
end
def two
puts 'two was defined as an instance method'
end
def three
puts 'three was defined as an instance method'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment