class Pronto::Formatter::BitbucketServerPullRequestFormatter

Public Class Methods

name() click to toggle source
# File lib/pronto/formatter/bitbucket_server_pull_request_formatter.rb, line 4
def self.name
  'bitbucket_server_pr'
end

Public Instance Methods

client_module() click to toggle source
# File lib/pronto/formatter/bitbucket_server_pull_request_formatter.rb, line 8
def client_module
  BitbucketServer
end
line_number(message, _) click to toggle source
# File lib/pronto/formatter/bitbucket_server_pull_request_formatter.rb, line 16
def line_number(message, _)
  message.line.line.new_lineno if message.line
end
pretty_name() click to toggle source
# File lib/pronto/formatter/bitbucket_server_pull_request_formatter.rb, line 12
def pretty_name
  'BitBucket Server'
end