-
Notifications
You must be signed in to change notification settings - Fork 5
/
tlog.gemspec
32 lines (22 loc) · 855 Bytes
/
tlog.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
$:.push File.expand_path("../lib", __FILE__)
# Used for Tlog::Version
require 'tlog'
Gem::Specification.new do |spec|
spec.name = "tlog"
spec.version = Tlog::Version
spec.required_ruby_version = ">=1.9.3"
spec.summary = "CLI Project Time Logger"
spec.description = "tlog is a distributed project time and ticket tracker"
spec.license = "GPL-2"
spec.add_dependency("commander", "4.0")
spec.add_dependency("chronic_duration", "0.10.2")
spec.add_dependency("git", "1.2.5")
spec.add_dependency("chronic", "0.9.1")
spec.add_dependency("colorize", "0.5.8")
spec.authors = ["Chris Wendel"]
spec.email = "[email protected]"
spec.homepage = "http://github.com/cewendel/tlog"
spec.executables = "tlog"
spec.files = `git ls-files`.split("\n")
spec.require_path = "lib"
end