Skip to content

Instantly share code, notes, and snippets.

@alxlion
Created August 21, 2020 19:59
Show Gist options
  • Save alxlion/745bf2c0ceee71670aaa603d4ce1f254 to your computer and use it in GitHub Desktop.
Save alxlion/745bf2c0ceee71670aaa603d4ce1f254 to your computer and use it in GitHub Desktop.
Send Metapramming Example
s = Shipment.new
if s.respond_to?(:tracking_code)
s.send(:tracking_code, '123ABC') # or s.send('cancel_shipping', '123ABC')
else
puts "Tracking code is not available."
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment