Sha256: bd3776dfd05820eb8ea6e2ae9c9135b5df3febdc830639374d786efa37735e6d

Contents?: true

Size: 507 Bytes

Versions: 1

Compression:

Stored size: 507 Bytes

Contents

module Ubiquitously
  module Scribd
    class Account < Ubiquitously::Service::Account
      def login
        page = agent.get("http://service.com/login")
        form = page.form_with(:name => "loginform")
        form["username"] = username
        form["password"] = password
        page = form.submit
        
        authorized?(page.title =~ /Some title/i)
      end
    end
    
    class Post < Ubiquitously::Service::Post
      def create
        page = agent.get("")
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ubiquitously-0.1.0 lib/ubiquitously/services/scribd.rb