Sha256: 5627286434bc08fc8fb1d2aaabddc86c0d11e5e4c0b3fd0c25a351a56e5ea93c
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 KB
Contents
<% content_for :header do %> <div class="alert-message block-message <%= @build.passed? ? "success" : "error" %>"> <%= @build.human_status_message %> </div> <% end %> <table class="build-info"> <tr> <th>Repository :</th><td><%= @build.repository.slug %></td> </tr> <tr> <th>Build :</th><td>#<%= @build.number %></td> </tr> <tr><th> </th><td /></tr> <tr> <th>Duration :</th><td><%= duration_in_words(@build.started_at, @build.finished_at) %></td> </tr> <tr> <th>Commit :</th><td><%= @commit.commit[0..7] %> (<%= @commit.branch %>)</td> </tr> <tr> <th>Author :</th><td><%= @commit.author_name %></td> </tr> <tr> <th>Message :</th><td><%= h(@commit.message).gsub("\n", "<br>").html_safe %></td> </tr> <tr><th> </th><td /></tr> <tr> <th>Status :</th><td><%= @build.status_message %></td> </tr> </table> <br> View the changeset : <%= @commit.compare_url %><br> <br> View the full build log and details : <%= repository_build_url(:slug => @build.repository.slug, :id => @build.id) %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
travis-core-0.0.1 | lib/travis/mailer/views/build/finished_email.html.erb |