Skip to content

Instantly share code, notes, and snippets.

@alxlion
Created August 21, 2020 19:57
Show Gist options
  • Save alxlion/3de90db3a000a82ea4f3787f5f51b4a0 to your computer and use it in GitHub Desktop.
Save alxlion/3de90db3a000a82ea4f3787f5f51b4a0 to your computer and use it in GitHub Desktop.
Respond_to Metaprogramming example 2
s = Shipment.new
if s.respond_to?(:cancel_shipping)
s.cancel_shipping
else
puts "Oh no ! Shipment cannot be cancel."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment