Sha256: d8097f87d45c19d48cf3085d48f7b12f5aec89a69f41f260a8e94f2111f71d57

Contents?: true

Size: 453 Bytes

Versions: 1

Compression:

Stored size: 453 Bytes

Contents

module Ubiquitously
  module Sharebrain
    class Account < Ubiquitously::Service::Account
      def login
        page = agent.get("http://digzign.com/login")
        form = page.form_with(:name => "loginform")
        form["username"] = username
        form["password"] = password
        page = form.submit
      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/sharebrain.rb