aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rails-completion.rb
blob: 407aeab3005654db037276f57939c45a4b202a94 (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'
  sha1 '33c06ece02aaf3ceb55921c1b8359432cf4c61d8'
  head 'https://github.com/jweslley/rails_completion.git'

  def install
    (prefix+'etc/bash_completion.d').install Dir['rails.bash']
  end
end