Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-08-11 02:07:50 +0400
committerRobert Speicher <rspeicher@gmail.com>2012-08-11 02:25:15 +0400
commit775418918782d5284000ed0bfea364458c748567 (patch)
treec31e3633a3bcbed17b000f0165cf35edad41f7ca /app/views/events/_event_last_push.html.haml
parent1413c23c502d5a5cbc9b81f553a245103c1d6e50 (diff)
Fully embrace Ruby 1.9 hash syntax
Didn't bother with files in db/, config/, or features/
Diffstat (limited to 'app/views/events/_event_last_push.html.haml')
-rw-r--r--app/views/events/_event_last_push.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/events/_event_last_push.html.haml b/app/views/events/_event_last_push.html.haml
index 212ef817e60..4ef927495ae 100644
--- a/app/views/events/_event_last_push.html.haml
+++ b/app/views/events/_event_last_push.html.haml
@@ -1,13 +1,13 @@
- if show_last_push_widget?(event)
.event_lp
%div
- = image_tag gravatar_icon(event.author_email), :class => "avatar"
+ = image_tag gravatar_icon(event.author_email), class: "avatar"
%span Your pushed to
= event.ref_type
- = link_to project_commits_path(event.project, :ref => event.ref_name) do
- %strong= truncate(event.ref_name, :length => 28)
+ = link_to project_commits_path(event.project, ref: event.ref_name) do
+ %strong= truncate(event.ref_name, length: 28)
at
%strong= link_to event.project.name, event.project
- = link_to new_mr_path_from_push_event(event), :title => "New Merge Request", :class => "btn very_small primary" do
+ = link_to new_mr_path_from_push_event(event), title: "New Merge Request", class: "btn very_small primary" do
Create Merge Request