class Gitcafeapi::Account::User
GitCafe Api Class:User
Protected Instance Methods
get_folllowers()
click to toggle source
# File lib/gitcafeapi.rb, line 151 def get_folllowers info = Net::HTTP.get (URI("#{@@user_url}/followers")) end
get_followings()
click to toggle source
# File lib/gitcafeapi.rb, line 157 def get_followings info = Net::HTTP.get (URI("#{@@user_url}/followings")) end
get_orgs()
click to toggle source
# File lib/gitcafeapi.rb, line 163 def get_orgs info = Net::HTTP.get (URI("#{@@user_url}/orgs")) end
get_projects()
click to toggle source
# File lib/gitcafeapi.rb, line 169 def get_projects info = Net::HTTP.get (URI("#{@@user_url}/projects")) end
get_pulls()
click to toggle source
# File lib/gitcafeapi.rb, line 175 def get_pulls info = Net::HTTP.get (URI("#{@@user_url}/pulls")) end
get_tickets()
click to toggle source
# File lib/gitcafeapi.rb, line 181 def get_tickets info = Net::HTTP.get (URI("#{@@user_url}/tickets")) end
get_user()
click to toggle source
# File lib/gitcafeapi.rb, line 145 def get_user info = Net::HTTP.get (URI("#{@@user_url}")) end
get_watching_projects()
click to toggle source
# File lib/gitcafeapi.rb, line 187 def get_watching_projects info = Net::HTTP.get (URI("#{@@user_url}/watching_projects")) end