summaryrefslogtreecommitdiffstats
path: root/hcl.gemspec
blob: 7c31a60f2621b16f4763a0af53abf91a81d65c59 (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
26
27
28
29
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'hcl'

Gem::Specification.new do |s|
  s.name = "hcl"
  s.version = HCl::VERSION
  s.extensions = 'ext/mkrf_conf.rb'

  s.authors = ["Zack Hobson"]
  s.email = "zack@zackhobson.com"
  s.description = "HCl is a command-line client for manipulating Harvest time sheets."
  s.executables = ["hcl"]
  s.files = %w[CHANGELOG LICENSE Rakefile] + Dir['*.markdown'] +
    Dir['bin/*'] + Dir['lib/**/*.rb'] + Dir['test/**/*.rb']
  s.homepage = "http://zackhobson.com/hcl/"
  s.licenses = ["MIT"]
  s.summary = "Harvest timesheets from the command-line"

  s.add_runtime_dependency 'trollop'
  s.add_runtime_dependency 'chronic'
  s.add_runtime_dependency 'highline'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'rubygems-tasks'
  s.add_development_dependency 'mocha'
  s.add_development_dependency 'yard'
  s.add_development_dependency 'simplecov'
  s.add_development_dependency 'fakeweb'
end