module Saber class Tracker class What < Base include HTTParty base_uri "http://what.cd" def login(username, password) self.post "/login.php", :body => {username: "SaberSalv", password: "futell2w"} end end end end