module Tinybucket::Api::Helper::RepoHelper
Private Instance Methods
base_path()
click to toggle source
# File lib/tinybucket/api/helper/repo_helper.rb, line 23 def base_path build_path('/repositories', [repo_owner, 'repo_owner'], [repo_slug, 'repo_slug']) end
path_to_find()
click to toggle source
# File lib/tinybucket/api/helper/repo_helper.rb, line 11 def path_to_find base_path end
path_to_forks()
click to toggle source
# File lib/tinybucket/api/helper/repo_helper.rb, line 19 def path_to_forks build_path(base_path, '/forks') end
path_to_watchers()
click to toggle source
# File lib/tinybucket/api/helper/repo_helper.rb, line 15 def path_to_watchers build_path(base_path, '/watchers') end