blob: 67520adfc0d3defafefd52a01fdf649f02a480dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'hcl'
Gem::Specification.new do |s|
s.name = "hcl"
s.version = HCl::VERSION
s.authors = ["Zack Hobson"]
s.date = "2013-11-19"
s.description = "HCl is a command-line client for manipulating Harvest time sheets."
s.email = "zack@zackhobson.com"
s.executables = ["hcl"]
s.files = %w[CHANGELOG LICENSE Rakefile] + Dir['*.markdown'] +
Dir['bin/*'] + Dir['lib/**/*.rb'] + Dir['test/**/*.rb']
s.homepage = "http://github.com/zenhob/hcl"
s.licenses = ["MIT"]
s.summary = "Harvest timesheets from the command-line"
s.add_runtime_dependency(%q<trollop>, [">= 0"])
s.add_runtime_dependency(%q<chronic>, [">= 0"])
s.add_runtime_dependency(%q<highline>, [">= 0"])
s.add_development_dependency(%q<shoulda>, [">= 0"])
s.add_development_dependency(%q<mocha>, [">= 0"])
end
|