Class: Ubiquitously::MvcForge::Account
- Inherits:
-
Service::Account
- Object
- Base
- Service::Account
- Ubiquitously::MvcForge::Account
- Defined in:
- lib/ubiquitously/services/mvc_forge.rb
Instance Attribute Summary
Attributes inherited from Service::Account
#credentials, #ip, #logged_in, #password, #user, #username
Instance Method Summary collapse
-
#login ⇒ Object
raises Net::HTTPForbidden 403 if already logged in.
Methods inherited from 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
raises Net::HTTPForbidden 403 if already logged in
5 6 7 8 9 10 11 12 13 14 |
# File 'lib/ubiquitously/services/mvc_forge.rb', line 5 def login page = agent.get("http://mvcforge.com/user/login") form = page.forms.detect { |form| form.form_node["id"] == "user-login" } form["name"] = username form["pass"] = password page = form.submit (page.parser.css(".messages.error").text.to_s !~ /unrecognized username or password/i) end |