public
Description: Git utilities for multiple repositories & submodules
Homepage: http://fiveruns.org
Clone URL: git://github.com/fiveruns/brigit.git
brigit / Rakefile
100644 17 lines (15 sloc) 0.533 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'rubygems'
require 'echoe'
 
require File.dirname(__FILE__) << "/lib/brigit/version"
 
Echoe.new 'brigit' do |p|
  p.version = Brigit::Version::STRING
  p.author = "FiveRuns Development Team"
  p.email = 'dev@fiveruns.com'
  p.project = 'fiveruns'
  p.summary = "Git utilities"
  p.url = "http://github.com/fiveruns/brigit"
  p.include_rakefile = true
  p.rcov_options << '--sort coverage --exclude gems --text-summary'
  p.runtime_dependencies << ['git', '>= 1.0.5']
  p.runtime_dependencies << ['highline', '>= 1.4.0']
end