Class: But::How

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

Instance Method Summary collapse

Instance Method Details

#messy(*words) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/but/cli.rb', line 23

def messy(*words)
  if options[:measure]
    measure(options) do
      say But::HomeKeeper.judge
    end
  elsif options[:profile]
    profile(options) do
      say But::HomeKeeper.judge
    end
  else
    say But::HomeKeeper.judge
  end
end