Skip to content

Instantly share code, notes, and snippets.

@alxlion
Created August 21, 2020 20:01
Show Gist options
  • Save alxlion/1796084d7f96f67276735abd027f8f06 to your computer and use it in GitHub Desktop.
Save alxlion/1796084d7f96f67276735abd027f8f06 to your computer and use it in GitHub Desktop.
Define_method Metaprogramming example
class Shipment
define_method :cancel do |reason|
@cancelled = true
puts reason
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment