Skip to content

Instantly share code, notes, and snippets.

@vireshas
Last active May 17, 2018 07:20
Show Gist options
  • Save vireshas/4b84f976f8f9f9ebafa23083753b9339 to your computer and use it in GitHub Desktop.
Save vireshas/4b84f976f8f9f9ebafa23083753b9339 to your computer and use it in GitHub Desktop.
Dev: how do i define_methods on a class?
class C
class << self
define_method(:a) do |msg|
"hello #{msg}"
end
end
end
puts C.a("world")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment