class Yo::Client

Public Class Methods

new(api_token: '') click to toggle source
# File lib/yo4r/client.rb, line 3
def initialize(api_token: '')
  @http = HTTP.new(api_token: api_token)
end

Public Instance Methods

subscribers_count() click to toggle source
# File lib/yo4r/client.rb, line 15
def subscribers_count
  @http.subscribers_count
end
yo(username: '') click to toggle source
# File lib/yo4r/client.rb, line 7
def yo(username: '')
  @http.yo(username: username)
end
yoall() click to toggle source
# File lib/yo4r/client.rb, line 11
def yoall
  @http.yoall
end