Skip to content

Instantly share code, notes, and snippets.

@eduardopoleo
Last active July 24, 2016 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eduardopoleo/53bbf1ea76640dff84e7df2bce4b2fa8 to your computer and use it in GitHub Desktop.
Save eduardopoleo/53bbf1ea76640dff84e7df2bce4b2fa8 to your computer and use it in GitHub Desktop.
class DummyClass
attr_reader :text
def initialize(some_text)
@text = some_text
end
def present
puts text
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment