RDoc preview in Textmate
While working on writing some RDOC documentation within Textmate, Rein Henrichs and I ran into a problem. Textmate will give you previews if you use markdown, but not RDOC. Below is how to do it. Create /usr/bin/rdoc2html: [text] #!/usr/bin/env ruby -rrdoc/markup/simple_markup -rrdoc/markup/simple_markup/to_html input = ARGF ? ARGF.read : STDIN.read print SM::SimpleMarkup.new.convert(input, SM::ToHtml.new) [/text] Make the […]
GitHub set author/committer
I’ve been working with Git lately and more specifically GitHub. I noticed something odd one day. Where most commits have one author listed, these commits had both a author and a committer listed. More specifically, the author field was the two members of the pair and the committer name was the workstation they were working […]