-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patha.rb
35 lines (32 loc) · 995 Bytes
/
a.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require 'time'
require 'cgi'
require './rss'
gl = `git log -u README.md`.lines.inject([]) {|sofar, line|
line = line.gsub('@gmail.com', ' at gmail com')
if /^commit/ =~ line
sofar + [line]
else
sofar.last << line
sofar
end
}
hashes = gl.map {|commit|
commit = commit.lines.to_a
hash = {}
hash[:commit] = commit.shift.chomp.match(/commit (.*)/)[1]
commit.shift if /^Merge/ =~ commit[0]
hash[:author] = commit.shift.chomp.match(/Author:\s*(.*)/)[1]
hash[:date] = commit.shift.chomp.match(/Date:\s*(.*)/)[1]
desc = CGI.escapeHTML(commit.join)
{
:title => hash[:commit],
:link => "http://sixeight.github.com/livecoding8/",
:date => Time.parse(hash[:date]),
:description => '<![CDATA[<pre>' + desc + '</pre>]]>'
}
}
puts RSS.make(
:title => "Recent Commits to livecoding8:master with Diff",
:description => "Recent Commits to livecoding8:master with Diff",
:link => "http://sixeight.github.com/livecoding8/",
:items => hashes)