class Jazzy::SourceHost::BitBucket

BitBucket has its own line number system

Public Instance Methods

image() click to toggle source
# File lib/jazzy/source_host.rb, line 98
def image
  'bitbucket.svg'
end
item_url_line_fragment(line) click to toggle source
# File lib/jazzy/source_host.rb, line 102
def item_url_line_fragment(line)
  "lines-#{line}"
end
item_url_multiline_fragment(start_line, end_line) click to toggle source
# File lib/jazzy/source_host.rb, line 106
def item_url_multiline_fragment(start_line, end_line)
  "lines-#{start_line}:#{end_line}"
end
name() click to toggle source
# File lib/jazzy/source_host.rb, line 94
def name
  'Bitbucket'
end