forked from zenhob/hcl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhcl.gemspec
33 lines (29 loc) · 1.18 KB
/
hcl.gemspec
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
30
31
32
$:.unshift(File.dirname(__FILE__) + '/lib')
require 'hcl'
Gem::Specification.new do |s|
s.name = "hcl"
s.version = HCl::VERSION
s.authors = ["Zack Hobson"]
s.email = "[email protected]"
s.description = "HCl is a command-line client for manipulating Harvest time sheets."
s.executables = ["hcl"]
s.files = %w[LICENSE Rakefile Gemfile bin/hcl bin/_hcl_completions man/hcl.1] + Dir['*.markdown'] +
Dir['lib/**/*.rb'] + Dir['test/**/*.rb']
s.homepage = "https://zenhob.github.io/hcl/"
s.licenses = ["MIT"]
s.summary = "Harvest timesheets from the command-line"
s.add_runtime_dependency 'gem-man', '0.3.0'
s.add_runtime_dependency 'trollop', '2.1.2'
s.add_runtime_dependency 'chronic', '0.10.2'
s.add_runtime_dependency 'highline', '1.7.2'
s.add_runtime_dependency 'faraday', '0.9.1'
s.add_runtime_dependency 'yajl-ruby', '1.2.1'
s.add_runtime_dependency 'escape_utils', '1.1.0'
s.add_runtime_dependency 'pry', '0.10.1'
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 'minitest'
end