Class: GatesOfHeaven::CLI

Inherits:
Thor
  • Object
show all
Defined in:
lib/gates_of_heaven/cli.rb

Instance Method Summary collapse

Instance Method Details

#doorman(password) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/gates_of_heaven/cli.rb', line 8

def doorman(password)
  pass = GatesOfHeaven::Doorman.new(password)
  puts pass.guard
  if pass.guard.nil?
    puts 'Nice password, skipper'
  end
end