Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Last active July 30, 2017 01:12
Show Gist options
  • Select an option

  • Save gabidavila/e9b7a79da8f45c9ed656fe2185daf1d5 to your computer and use it in GitHub Desktop.

Select an option

Save gabidavila/e9b7a79da8f45c9ed656fe2185daf1d5 to your computer and use it in GitHub Desktop.
Prepend Examples
module Paintable
def color
puts "Blue"
end
end
class Vehicle
def color
puts "Green"
end
end
class Car < Vehicle
prepend Paintable
def color
puts "Red"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment