Sha256: 3a0be071c710aeae84b6f8f322a9939d1456c39121194fa1ceec0996d33c01ab
Contents?: true
Size: 1.75 KB
Versions: 15
Compression:
Stored size: 1.75 KB
Contents
<!DOCTYPE html> <html xmlns='http://www.w3.org/1999/xhtml'> <head> <title>Coverband: <%= Coverband::VERSION %></title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script src='<%= assets_path('dependencies.js') %>' type='text/javascript'></script> <script src='<%= assets_path('application.js') %>' type='text/javascript'></script> <link href='<%= assets_path('application.css') %>' media='screen, projection, print' rel='stylesheet' type='text/css'> <link rel="shortcut icon" type="image/png" href="<%= assets_path("favicon_#{coverage_css_class(result.source_files.covered_percent)}.png") %>" /> <link rel="icon" type="image/png" href="<%= assets_path('favicon.png') %>" /> </head> <body> <div id="loading"> <img src="<%= assets_path('loading.gif') %>" alt="loading"/> </div> <div id="wrapper" style="display:none;"> <%= display_nav %> <div id="content"> <%= formatted_file_list("All Files", result, result.source_files) unless view_gems? %> <% result.groups.each do |name, files| %> <%= formatted_file_list(name, result, files) %> <% end %> </div> <div id="footer"> Generated by <a href="http://github.com/danmayer/coverband">Coverband</a> v<%= Coverband::VERSION %> </div> <div class="source_files"> <% result.source_files.each do |source_file| %> <% if (!source_file.gem? || (view_gems? && gem_details? && source_file.gem? )) %> <% if static_html? %> <%= formatted_source_file(result, source_file) %> <% else %> <%= formatted_source_file_loader(result, source_file) %> <% end %> <% end %> <% end %> </div> </div> </body> </html>
Version data entries
15 entries across 15 versions & 1 rubygems