blob: 5c258af44fad5f5bcb79bafd1e2013cd9c1a0e7e (
plain)
1
2
3
4
5
6
7
8
9
10
  | 
require 'formula'
class Titlecase < Formula
  head 'git://github.com/ap/titlecase.git'
  homepage 'http://plasmasturm.org/code/titlecase/'
  def install
    bin.install "titlecase"
  end
end
  |