Sha256: fd7e36c1b251ddbd83a18e790c1bcf74d03a1b8a6046d406871f665f3b17f242

Contents?: true

Size: 772 Bytes

Versions: 12

Compression:

Stored size: 772 Bytes

Contents

<% @commits.each do |commit| %>
  <% run = @runs[commit.sha]
     result = @results[commit.sha] %>
  <%= @last_date ? render_timeline_gap_for(commit.date...@last_date) : render_timeline_date(commit.date) %>
  <div class="timeline-event project-test-commit" data-sha="<%= commit.sha %>" data-first="<%= result.present? && result.new_test? %>">
    <span class="timeline-event-time"><%= format_timeline_time(commit) %></span>
    <%= commit_test_status run, result %>
    <span class="project-test-commit-author"><%= gravatar_image commit.author_email, size: 20 %></span>
  </span>
    <span class="project-test-commit-message"><%= commit_test_message commit %></span>
  </div>
  <% @last_date = commit.date %>
  <% break if result.present? && result.new_test? %>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
houston-core-0.8.0.pre app/views/project_tests/_commits.html.erb
houston-core-0.7.0 app/views/project_tests/_commits.html.erb
houston-core-0.7.0.beta4 app/views/project_tests/_commits.html.erb
houston-core-0.7.0.beta3 app/views/project_tests/_commits.html.erb
houston-core-0.7.0.beta2 app/views/project_tests/_commits.html.erb
houston-core-0.7.0.beta app/views/project_tests/_commits.html.erb
houston-core-0.6.3 app/views/project_tests/_commits.html.erb
houston-core-0.6.2 app/views/project_tests/_commits.html.erb
houston-core-0.6.1 app/views/project_tests/_commits.html.erb
houston-core-0.6.0 app/views/project_tests/_commits.html.erb
houston-core-0.5.6 app/views/project_tests/_commits.html.erb
houston-core-0.5.5 app/views/project_tests/_commits.html.erb