public
Description: Git based distributed ticketing system, including a command line client and web viewer
Homepage:
Clone URL: git://github.com/schacon/ticgit.git
schacon (author)
Tue Jan 27 11:03:55 -0800 2009
commit  bf57b032e030bd16a7b2bb3e95ee007b17147759
tree    99c4aa0b6a03017ba0a597ba231992b2fa9593cd
parent  2bad4dfc42a78d61f68272f90e10c36eca118589
ticgit / ticgit.gemspec
100644 19 lines (16 sloc) 0.722 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "ticgit"
    s.version = "0.3.6"
    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", "ticgitweb"]
    s.default_executable = %q{ti}
    s.homepage = "http://github/schacon/ticgit"
 
    s.require_paths = ["lib", "bin"]
    s.specification_version = 2 if s.respond_to? :specification_version=
end