public
Description: A tool to help work with git projects that accept patches from Lighthouse
Homepage:
Clone URL: git://github.com/schacon/git-lighthouse.git
git-lighthouse / git-lighthouse.gemspec
100644 17 lines (14 sloc) 0.764 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 = "git-lighthouse"
    s.version = "0.1.2"
    s.date = "2008-05-27"
    s.author = "Scott Chacon"
    s.email = "schacon@gmail.com"
    s.summary = "Provides command line access to a Lighthouse ticketing system for a git based software package."
    s.files = ["bin/git-lh", "lib/git-lighthouse/base.rb", "lib/git-lighthouse/cli.rb", "lib/git-lighthouse/lighthouse.rb", "lib/git-lighthouse/version.rb", "lib/git-lighthouse.rb", "LICENSE", "README.txt", "spec/cli_spec.rb", "spec/spec_helper.rb"]
    
    s.bindir = 'bin'
    s.executables << "git-lh"
    s.homepage = "http://github/schacon/git-lighthouse"
 
    s.require_path = "lib"
end