Skip to content

Instantly share code, notes, and snippets.

@indspenceable
Created March 15, 2013 06:41
Show Gist options
  • Save indspenceable/5167915 to your computer and use it in GitHub Desktop.
Save indspenceable/5167915 to your computer and use it in GitHub Desktop.
class Foo
def self.bar(method, val)
define_method(method){ val }
end
bar :baz, "Hello, world."
end
Foo.new.baz # => "Hello, world."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment