diff --git a/app/views/repositories/index.html.erb b/app/views/repositories/index.html.erb index eb87866..0eabc65 100644 --- a/app/views/repositories/index.html.erb +++ b/app/views/repositories/index.html.erb @@ -36,7 +36,10 @@ <% repository.commits.each do |commit| %> - <%= '> Updated at ' + link_to(commit.created_at.to_s, raw(commit.url)) + ' by ' + link_to(commit.authorname, raw('http://github.com/' + h(commit.authorname))) + ' - "' + commit.message + '"' rescue "" %> + Updated at <%=commit.created_at.to_s%> + by <%=commit.authorname%> + - <%=commit.message%> + <%# '> Updated at ' + link_to(commit.created_at.to_s, raw(commit.url)) + ' by ' + link_to(commit.authorname, raw('http://github.com/' + h(commit.authorname))) + ' - "' + commit.message + '"' rescue "" %> <% end %>