Last active
August 6, 2017 15:42
-
-
Save Sihui/510fa31349d9a6a8e89653727aeb1db7 to your computer and use it in GitHub Desktop.
Design Pattern: State and Combination Locks
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 EnteredPinThreeState | |
attr_reader :lock, :state_name | |
def initialize(lock) | |
@lock = lock | |
@state_name = 'Entered Pin Three State' | |
end | |
def dial_to(number) | |
lock.state = lock.entered_wrong_pin_state | |
end | |
def clear | |
lock.state = lock.cleared_state | |
end | |
def pull_to_open | |
lock.state = lock.unlocked_state | |
end | |
def push_to_lock | |
puts 'The lock is already locked' | |
puts " currently in #{state_name}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment