module Tinybucket::Api::Helper::UserHelper

Private Instance Methods

base_path() click to toggle source
# File lib/tinybucket/api/helper/user_helper.rb, line 27
def base_path
  build_path('/users', [username, 'username'])
end
path_to_find() click to toggle source
# File lib/tinybucket/api/helper/user_helper.rb, line 11
def path_to_find
  base_path
end
path_to_followers() click to toggle source
# File lib/tinybucket/api/helper/user_helper.rb, line 15
def path_to_followers
  build_path(base_path, 'followers')
end
path_to_following() click to toggle source
# File lib/tinybucket/api/helper/user_helper.rb, line 19
def path_to_following
  build_path(base_path, 'following')
end
path_to_repos() click to toggle source
# File lib/tinybucket/api/helper/user_helper.rb, line 23
def path_to_repos
  build_path('/repositories', [username, 'username'])
end