Class: Ubiquitously::Snipplr::Account
- Inherits:
-
Ubiquitously::Service::Account
- Object
- Base
- Ubiquitously::Service::Account
- Ubiquitously::Snipplr::Account
- Defined in:
- lib/ubiquitously/services/snipplr.rb
Instance Attribute Summary
Attributes inherited from Ubiquitously::Service::Account
#credentials, #ip, #logged_in, #password, #user, #username
Instance Method Summary collapse
Methods inherited from Ubiquitously::Service::Account
#access_token, #agent, #cookies?, #credentials?, #initialize
Methods included from Account::Authorizable
Methods included from Account::Loggable
Methods included from Account::Restful
Methods inherited from Base
Methods included from SubclassableCallbacks
Constructor Details
This class inherits a constructor from Ubiquitously::Service::Account
Instance Method Details
#login ⇒ Object
6 7 8 9 10 11 12 13 14 15 |
# File 'lib/ubiquitously/services/snipplr.rb', line 6 def login page = agent.get("http://snipplr.com/login/") form = page.form_with(:action => "/login/") form["username"] = username form["password"] = password form["btnsubmit"] = "LOGIN" page = form.submit (page.uri != "http://snipplr.com/login/") end |