public
Description: A port of sake-git to Thor. A set of Thor tasks to make developing with Git easier.
Homepage:
Clone URL: git://github.com/cypher/thor-git.git
thor-git / Thorfile
100644 9 lines (7 sloc) 0.15 kb
1
2
3
4
5
6
7
8
9
require 'thor'
 
class Default < Thor
  desc "install", "Installs the thor-git tasks"
  def install
    Thor::Runner.new.install("git.thor")
  end
end