Skip to content

Commit 8794879

Browse files
authored
Fix deprecated Git::Log#each call (#2254)
1 parent ed2ae68 commit 8794879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/update/changelog.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ module Rouge
6464
class Log
6565
def initialize(remote, commits)
6666
@remote = remote
67-
@msgs = commits.map { |c| Message.new(c.message, c.author.name) }
67+
@msgs = commits.execute.map { |c| Message.new(c.message, c.author.name) }
6868
end
6969

7070
def converted

0 commit comments

Comments
 (0)