Created
February 8, 2019 11:16
-
-
Save al3rez/d676a90c9d730639ed24351f9cbe652b to your computer and use it in GitHub Desktop.
This file contains 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 Television < ActiveModel | |
def turned_off? | |
!turned_on | |
end | |
end | |
class TelevisionRemote | |
attr_reader :television | |
def initialize(television) | |
@television = television | |
end | |
def turn_on!(television) | |
# Voilation of Tell, Don't ask | |
if television.turned_off? | |
telveison.turned_on = true | |
television.save! | |
else | |
television | |
end | |
end | |
end | |
television = Television.current | |
TelevisionRemote.new(television).turn_on! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment