Skip to content

Instantly share code, notes, and snippets.

@zotherstupidguy
Last active November 15, 2016 07:11
Show Gist options
  • Save zotherstupidguy/6f59ae07f1057bf28c67c12fb8c877c0 to your computer and use it in GitHub Desktop.
Save zotherstupidguy/6f59ae07f1057bf28c67c12fb8c877c0 to your computer and use it in GitHub Desktop.
love ruby dynamic methods
define_method("love") do |person: "mo", &block|
@person = person
p "this is an activity from inside define method"
instance_eval &block
end
love person: "makki" do
p "love you #{@person}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment