Class: CreateNewLogins

Inherits:
Object
  • Object
show all
Includes:
CommandHelper
Defined in:
lib/renuo/cli/app/create_new_logins.rb

Instance Method Summary collapse

Methods included from CommandHelper

#open_path, #run_command

Instance Method Details

#runObject



11
12
13
14
15
16
17
18
19
20
# File 'lib/renuo/cli/app/create_new_logins.rb', line 11

def run
  @logins.each do ||
    say [:name].yellow
    [:steps].each_with_index do |step, index|
      say "\t#{index + 1}. #{step}"
    end
    open_site [:sign_up_url]
  end
  say "every thing is set up".green
end