public
Rubygem
Description: Git based distributed ticketing system, including a command line client and web viewer
Clone URL: git://github.com/schacon/ticgit.git
yob (author)
Mon May 12 07:27:25 -0700 2008
schacon (committer)
Mon May 12 17:13:12 -0700 2008
commit  a4a1aff40ba4604682cfd62e5239bd120b82b851
tree    6e5853faf2823f116c1be29e9ccbf411f1a62188
parent  6e453f523fa1da50ecb04431101112b3611c6a4d
ticgit / ticgit.gemspec
100644 20 lines (16 sloc) 0.67 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "ticgit"
    s.version = "0.3.2"
    s.date = "2008-05-10"
    s.author = "Scott Chacon"
    s.email = "schacon@gmail.com"
    s.summary = "A distributed ticketing system for Git projects."
    s.files = ["lib/ticgit/base.rb", "lib/ticgit/cli.rb", "lib/ticgit/comment.rb", "lib/ticgit/ticket.rb", "lib/ticgit.rb", "bin/ti", "bin/ticgitweb"]
 
    s.bindir = 'bin'
    s.executables << "ti"
    s.executables << "ticgitweb"
    s.homepage = "http://github/schacon/ticgit"
 
    s.add_dependency('git', [">= 1.0.5"])
 
    s.require_path = "lib"
end