Skip to content

Commit 713c34a

Browse files
committed
second iteration of the seniority column
The Seniority label may have more connotations than just what we mean, and the YYYY-MM-DD format for dates is kind of noisy. Let's try these alternatives and see if they work better.
1 parent a7b0f9f commit 713c34a

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

app/assets/stylesheets/screen.css.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -310,12 +310,13 @@ TABLES GENERALS
310310
}
311311

312312
#table-wrap table td.contributor-name {
313-
width: 80%;
313+
width: 75%;
314314
font-weight: bold;
315315
font-size: 1.1em;
316316
}
317317

318-
#table-wrap table td.contributor-seniority {
318+
#table-wrap table td.contributor-since {
319+
white-space: nowrap;
319320
text-align: left;
320321
}
321322

app/helpers/application_helper.rb

+4
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,8 @@ def normalize_title(title)
4040
title = title.starts_with?('Rails Contributors') ? title : "Rails Contributors - #{title}"
4141
strip_tags(title)
4242
end
43+
44+
def date(timestamp)
45+
timestamp.strftime('%d %b %Y')
46+
end
4347
end

app/views/commits/_commit.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<tr class="<%= cycle 'even', 'odd' %>">
22
<td class="commit-sha1"><%= link_to_commit_in_github commit %></td>
3-
<td class="commit-date"><%= commit.committer_date.to_date %></td>
3+
<td class="commit-date"><%= date commit.committer_date %></td>
44
<td class="commit-message"><%= truncate(commit.short_message, length: 59) %></td>
55
</tr>

app/views/contributors/_contributor.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<tr class="<%= cycle 'even', 'odd' %>">
22
<td class="contributor-rank">#<%= contributor.rank %></td>
33
<td class="contributor-name"><%= link_to_contributor contributor %></td>
4-
<td class="contributor-seniority"><%= contributor.first_contribution_at.to_date %></td>
4+
<td class="contributor-since"><%= date contributor.first_contribution_at %></td>
55
<td class="no-commits">
66
<% path = if @time_window
77
contributor_commits_in_time_window_path(contributor, @time_window)

app/views/contributors/index.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<tr class="header">
1414
<th></th>
1515
<th>Name</th>
16-
<th>Seniority</th>
16+
<th>Since</th>
1717
<th>Commits</th>
1818
</tr>
1919
<%= render @contributors %>

app/views/releases/_release.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<tr class="<%= cycle 'even', 'odd' %> release">
22
<td class="release-tag"><%= link_to_release_in_github release %></td>
3-
<td class="release-date"><%= release.date.to_date %></td>
3+
<td class="release-date"><%= date release.date %></td>
44
<td class="release-name"><%= link_to_release release %></td>
55
<td class="release-counter"><%= link_to release.ncontributors, release_contributors_path(release) %></td>
66
<td class="release-counter"><%= link_to release.ncommits, release_commits_path(release) %></td>

test/helpers/application_helper_test.rb

+4
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,8 @@ def test_github_url_for_tag
1212
tag = 'v4.2.1'
1313
assert_equal "https://github.com/rails/rails/tree/#{tag}", github_url_for_tag(tag)
1414
end
15+
16+
def test_date
17+
assert_equal '07 Mar 2015', date(Time.new(2015, 3, 7))
18+
end
1519
end

0 commit comments

Comments
 (0)