Created
December 6, 2010 14:24
-
-
Save alx/730347 to your computer and use it in GitHub Desktop.
Jekyll plugin to add Git activity inside a list
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
require 'git' | |
module Jekyll | |
class GitActivityTag < Liquid::Tag | |
def initialize(tag_name, text, tokens) | |
super | |
end | |
def render(context) | |
result = "" | |
g = Git.open(File.join(Dir.getwd, "..")) | |
index = 0 | |
g.log.each do |log| | |
if(index < 10) | |
result << "<li>" | |
result << log.date.strftime("%d %b") | |
result << " - <a href='http://git.tetalab.org/index.php/p/jekyll/source/commit/" | |
result << log.sha | |
result << "/'>" | |
result << log.message | |
result << "</a></li>" | |
index += 1 | |
end | |
end | |
"<ul>#{result}</ul>" | |
end | |
end | |
end | |
Liquid::Template.register_tag('gitactivity', Jekyll::GitActivityTag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@streambinder You can still use plugins on gh-pages, but you have to push the static files instead of the Jekyll files.