Module: PassGen::CLI

Defined in:
lib/passgen/cli.rb

Class Method Summary collapse

Class Method Details

.execute(options) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/passgen/cli.rb', line 5

def execute(options)
  @@options = options
  
  if options[:hex]
    execute_with_hexing
  else
    execute_without_hexing
  end
end