Class: Ubiquitously::BloggerDen::Account
- Inherits:
-
Service::Account
- Object
- Ubiquitously::Base
- Service::Account
- Ubiquitously::BloggerDen::Account
- Defined in:
- lib/ubiquitously/services/blogger_den.rb
Instance Attribute Summary
Attributes inherited from Service::Account
#credentials, #ip, #logged_in, #password, #user, #username
Instance Method Summary collapse
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 Ubiquitously::Base
Methods included from SubclassableCallbacks
Constructor Details
This class inherits a constructor from Ubiquitously::Service::Account
Instance Method Details
#login ⇒ Object
4 5 6 7 8 9 10 11 12 |
# File 'lib/ubiquitously/services/blogger_den.rb', line 4 def login page = agent.get("http://www.bloggerden.com/login") form = page.forms.detect {|form| form.form_node["id"] == "thisform"} form["username"] = username form["password"] = password page = form.submit (page.title =~ /Like Digg/i) end |