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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "hcl"
s.version = "0.4.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_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.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
".document",
"CHANGELOG",
"HACKING.markdown",
"LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
"bin/hcl",
"deps.rip",
"hcl.gemspec",
"lib/hcl/app.rb",
"lib/hcl/commands.rb",
"lib/hcl/day_entry.rb",
"lib/hcl/project.rb",
"lib/hcl/task.rb",
"lib/hcl/timesheet_resource.rb",
"lib/hcl/utility.rb",
"test/app_test.rb",
"test/day_entry_test.rb",
"test/test_helper.rb",
"test/utility_test.rb"
]
s.homepage = "http://github.com/zenhob/hcl"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "2.0.3"
s.summary = "Harvest timesheets from the command-line"
if s.respond_to? :specification_version then
s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
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"])
else
s.add_dependency(%q<trollop>, [">= 0"])
s.add_dependency(%q<chronic>, [">= 0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0"])
end
else
s.add_dependency(%q<trollop>, [">= 0"])
s.add_dependency(%q<chronic>, [">= 0"])
s.add_dependency(%q<highline>, [">= 0"])
s.add_dependency(%q<shoulda>, [">= 0"])
s.add_dependency(%q<mocha>, [">= 0"])
end
end
|