Module: Relevance::Tarantula::HtmlReportHelper
Instance Method Summary
collapse
#log, #rails_root, #tarantula_home, #verbose
Instance Method Details
#textmate_url(file, line_no) ⇒ Object
25
26
27
|
# File 'lib/relevance/tarantula/html_report_helper.rb', line 25
def textmate_url(file, line_no)
"txmt://open?url=file://#{File.expand_path(File.join(rails_root,file))}&line_no=#{line_no}"
end
|
#wrap_in_line_number_table_row(text, &blk) ⇒ Object
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/relevance/tarantula/html_report_helper.rb', line 5
def wrap_in_line_number_table_row(text, &blk)
x = Builder::XmlMarkup.new
x.tr do
lines = text.split("\n")
x.td(:class => "numbers") do
lines.size.times do |index|
x.span(index+1, :class => "line number")
end
end
x.td(:class => "lines") do
lines.each do |line|
x.span(line, :class => "line")
end
end
end
x.target!
end
|
#wrap_stack_trace_line(text) ⇒ Object
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/relevance/tarantula/html_report_helper.rb', line 29
def wrap_stack_trace_line(text)
if text =~ %r{^\s*(/[^:]+):(\d+):([^:]+)$}
file = h($1) line_number = $2
message = h($3) "<a href='#{textmate_url(file, line_number)}'>#{file}:#{line_number}</a>:#{message}" else
h(text) end
end
|