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.6"
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 'Email for parse.com: '
  email = gets
  print 'Password for parse.com: '
  password = STDIN.noecho(&:gets)
  puts
  [email.strip, password.strip]
end