Method: Chatterbot::UI#send_to_app_creation

Defined in:
lib/chatterbot/ui.rb

#send_to_app_creationObject



82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/chatterbot/ui.rb', line 82

def send_to_app_creation
  puts "Please hit enter, and I will send you to #{API_SIGNUP_URL} to start the process."
  puts "(If it doesn't work, you can open a browser and paste the URL in manually)"

  puts "\nHit Enter to continue."
  
  STDIN.readline

  Launchy.open()

  # pause to allow any launchy output
  sleep(2)

  puts "\n\n"


  puts "Once you've filled out the app form, click on the 'Keys and Access Tokens' link"
end