Created
February 8, 2012 20:15
-
-
Save martennilsson/1772986 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Car | |
attr_accessor :engine | |
def initialize(engine) | |
@engine = engine | |
end | |
def start_engine | |
@engine.start | |
end | |
def stop_engine | |
@engine.stop | |
end | |
end | |
class Car | |
attr_accessor :engine | |
delegate :start, :stop, :to => :engine | |
def initialize(engine) | |
@engine = engine | |
end | |
end | |
class Engine | |
def start | |
end | |
def stop | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment