class Asgit::Services::Bitbucket

Public Instance Methods

base_structure() click to toggle source
# File lib/asgit/services/bitbucket.rb, line 11
def base_structure
  "%{base_url}/%{organization}/%{project}"
end
base_url() click to toggle source
# File lib/asgit/services/bitbucket.rb, line 7
def base_url
  "https://bitbucket.org"
end
branch_uri() click to toggle source
# File lib/asgit/services/bitbucket.rb, line 19
def branch_uri
  "branch/%{branch}"
end
commit_uri() click to toggle source
# File lib/asgit/services/bitbucket.rb, line 15
def commit_uri
  "commits/%{commit}"
end
file_at_commit_uri() click to toggle source
# File lib/asgit/services/bitbucket.rb, line 23
def file_at_commit_uri
  "src/%{commit}/%{file_path}?at=%{branch}"
end