Skip to content

Instantly share code, notes, and snippets.

@gabidavila
Created July 30, 2017 01:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabidavila/693a3895a7918cdc1093de46d1ace885 to your computer and use it in GitHub Desktop.
Save gabidavila/693a3895a7918cdc1093de46d1ace885 to your computer and use it in GitHub Desktop.
module Paintable
def color
puts "Blue"
super
end
end
class Vehicle
def color
puts "Green"
end
end
class Car < Vehicle
prepend Paintable
def color
puts "Red"
end
end
car = Car.new
car.color
# Blue
# Red
# => nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment