Module: PryParsecom

Defined in:
lib/pry-parsecom.rb,
lib/pry-parsecom/table.rb,
lib/pry-parsecom/setting.rb,
lib/pry-parsecom/version.rb

Defined Under Namespace

Classes: Setting, Table

Constant Summary collapse

VERSION =
"0.0.5"
Commands =
Pry::CommandSet.new

Class Method Summary collapse

Class Method Details

.ask_email_and_passwordObject



18
19
20
21
22
23
24
25
# File 'lib/pry-parsecom.rb', line 18

def ask_email_and_password
  print 'Input parse.com email: '
  email = gets
  print 'Input parse.com password: '
  password = STDIN.noecho(&:gets)
  puts
  [email.strip, password.strip]
end