blob: 15a229a72aecd53e37466e8858d6efda14cf439d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | require 'formula'
class RailsCompletion < Formula
  homepage 'https://github.com/jweslley/rails_completion'
  url 'https://github.com/jweslley/rails_completion/tarball/v0.2.0'
  md5 '9e3fad56de597752c4a2e10006e06ce5'
  head 'https://github.com/jweslley/rails_completion.git'
  def install
    (prefix+'etc/bash_completion.d').install Dir['rails.bash']
  end
end
 |