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.name = "TicGit-ng"
s.version = "1.0.2.18"
s.platform = Gem::Platform::RUBY
s.date = Date.today.to_s
s.authors = ["Scott Chacon", "Jeff Welling"]
s.email = ["Jeff.Welling@gmail.com"]
s.homepage = "https://github.com/jeffWelling/ticgit"
s.summary = "Git based distributed ticketing system"
s.description="TicGit-ng is a simple ticketing system, roughly similar to the Lighthouse model, that is based in git."
s.rubyforge_project = "ticgit-ng"
s.add_dependency "git"
s.add_development_dependency "rspec"
s.files = Dir.glob("{bin,lib}/**/*") + %w( LICENSE_MIT LICENSE_GPL README.mkd )
s.executables = ['ti', 'ticgitweb']
s.require_path= 'lib'
end
|