class RPW::Key

Public Instance Methods

register(email) click to toggle source
# File lib/rpw/cli/key.rb, line 4
def register(email)
  unless client.setup?
    say "You have not yet set up the client. Run $ rpw start"
    exit(1)
  end
  if client.register_email(email)
    say "Key registered with #{email}. You should receive a Slack invite soon."
  else
    say "Key has already been registered. If you believe this is in error,"\
      " please email support@speedshop.co"
  end
end