Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
Updated CHANGELOG and fixed task listing
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmoss committed Mar 23, 2012
1 parent ef1d48f commit 7365cd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,5 +1,6 @@
## Strano 1.0.0 (unreleased) ## ## Strano 1.0.0 (unreleased) ##


* Can now choose which branch to deploy from. *Joel Moss*
* Fixed default verbosity (vvv). *Joel Moss* * Fixed default verbosity (vvv). *Joel Moss*
* Replaced Resque with the more efficient Sidekiq. *Joel Moss* * Replaced Resque with the more efficient Sidekiq. *Joel Moss*
* Refactored task processing, which now logs output in real time, and handles errors much more gracefully. *Joel Moss* * Refactored task processing, which now logs output in real time, and handles errors much more gracefully. *Joel Moss*
Expand Down
4 changes: 3 additions & 1 deletion app/views/projects/show/_tasks.html.erb
Expand Up @@ -7,7 +7,9 @@
</div> </div>


<%- @recent_tasks.each do |job| -%> <%- @recent_tasks.each do |job| -%>
<%= render :partial => "task", :locals => { :task => task, :hidden => false } if task = resource.cap.find_task(job.task) %> <% if task = resource.cap.find_task(job.task) %>
<%= render :partial => "task", :locals => { :task => task, :hidden => false } %>
<% end %>
<%- end -%> <%- end -%>


<div class="page-header margin-top8"> <div class="page-header margin-top8">
Expand Down

0 comments on commit 7365cd0

Please sign in to comment.