Skip to content

Instantly share code, notes, and snippets.

/ruby.rb Secret

Created June 29, 2015 22:35
Show Gist options
  • Save anonymous/9acafebfce3ffd97348e to your computer and use it in GitHub Desktop.
Save anonymous/9acafebfce3ffd97348e to your computer and use it in GitHub Desktop.
class MyItem
attr_accessor :name
def initialize(name)
@name = name
end
# Public Method stored here generating the search
def MyMethod()
puts "hi #{@name}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment