public
Rubygem
Description: Git based distributed ticketing system, including a command line client and web viewer
Clone URL: git://github.com/schacon/ticgit.git
Search Repo:
ticgit / ticgit.gemspec
100644 17 lines (15 sloc) 0.627 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.name = "ticgit"
    s.version = "0.3.3"
    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.require_path = "lib"
end