Skip to content

Instantly share code, notes, and snippets.

@al3rez
Created February 8, 2019 11:16
Show Gist options
  • Save al3rez/d676a90c9d730639ed24351f9cbe652b to your computer and use it in GitHub Desktop.
Save al3rez/d676a90c9d730639ed24351f9cbe652b to your computer and use it in GitHub Desktop.
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