-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'Until' column to contributors index
- Loading branch information
Showing
16 changed files
with
128 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
db/migrate/20150326181907_add_first_contribution_at_to_contributors.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
db/migrate/20240824030051_add_last_contribution_at_to_contributors.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
class AddLastContributionAtToContributors < ActiveRecord::Migration[7.1] | ||
def up | ||
add_column :contributors, :last_contribution_at, :datetime | ||
Contributor.set_last_contribution_timestamps | ||
end | ||
|
||
def down | ||
remove_column :contributors, :last_contribution_at | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# WARNING: contributors.yml has first contribution timestamps that depend on | ||
# WARNING: contributors.yml has contribution timestamps that depend on | ||
# these fixtures. Keep them in sync as needed. | ||
# | ||
# In the following comments we assumed today is 26 December 2012. | ||
|
@@ -40,7 +40,7 @@ commit_26c024e: | |
one, because it is issued at parse-time. It seemed to in | ||
some places because the constant was the only expression in | ||
the block and therefore it was its return value, that could | ||
potentially be used by silence_warnings are return value of | ||
potentially be used by silence_warnings as a return value of | ||
the yield call. | ||
To bypass the warning we assign to a variable. The chosen | ||
|
@@ -90,6 +90,20 @@ commit_5b90635: | |
release: 'v3_2_0' | ||
merge: false | ||
|
||
# This commit belongs to this year, release 4.0.0 | ||
commit_e243a8a: | ||
sha1: 'e243a8a32eb4c8777f07ca4b974bd7e38d9477d3' | ||
author_email: '[email protected]' | ||
author_name: 'José Valim' | ||
author_date: '2012-07-18 07:21:57' | ||
committer_email: '[email protected]' | ||
committer_name: 'José Valim' | ||
committer_date: '2012-07-18 07:47:52' | ||
message: | | ||
Update changelog for migration generator change | ||
release: v4_0_0 | ||
merge: false | ||
|
||
# This commit is seven years old, release v0.14.4. | ||
commit_e0ef631: | ||
sha1: 'e0ef63105538f8d97faa095234f069913dd5229c' | ||
|
@@ -106,7 +120,7 @@ commit_e0ef631: | |
release: 'v0_14_4' | ||
merge: false | ||
|
||
# This commit has a committer_date that is more recent the author_date and | ||
# This commit has a committer_date that is more recent than the author_date and | ||
# should appear in the contributions list before 5b90635. | ||
commit_7cdfd91: | ||
sha1: '7cdfd910b7cdd398f8b54542c5a6a17966a5c8f3' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters