module Tinybucket::Api::Helper::IssuesHelper

Private Instance Methods

base_path() click to toggle source
# File lib/tinybucket/api/helper/issues_helper.rb, line 20
def base_path
  build_path('/repositories',
             [repo_owner, 'repo_owner'],
             [repo_slug, 'repo_slug'], 
             'issues')
end
path_to_find(issue) click to toggle source
# File lib/tinybucket/api/helper/issues_helper.rb, line 15
def path_to_find(issue)
  build_path(base_path,
             [issue, 'issue'])
end
path_to_list() click to toggle source
# File lib/tinybucket/api/helper/issues_helper.rb, line 11
def path_to_list
  build_path(base_path)
end