summaryrefslogtreecommitdiffstats
path: root/hcl.gemspec
blob: ac2543b706594935f2a63f063da7a7809652d7f4 (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
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
74
75
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name = %q{hcl}
  s.version = "0.2.3"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Zack Hobson"]
  s.date = %q{2009-08-23}
  s.default_executable = %q{hcl}
  s.description = %q{HCl is a command-line client for manipulating Harvest time sheets.}
  s.email = %q{zack@opensourcery.com}
  s.executables = ["hcl"]
  s.extra_rdoc_files = [
    "LICENSE",
     "README.markdown"
  ]
  s.files = [
    ".document",
     ".gitignore",
     "CHANGELOG",
     "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.has_rdoc = true
  s.homepage = %q{http://github.com/zenhob/hcl}
  s.rdoc_options = ["--charset=UTF-8"]
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.3.1}
  s.summary = %q{Harvest timesheets from the command-line}
  s.test_files = [
    "test/app_test.rb",
     "test/day_entry_test.rb",
     "test/test_helper.rb",
     "test/utility_test.rb"
  ]

  if s.respond_to? :specification_version then
    current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
    s.specification_version = 2

    if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
      s.add_runtime_dependency(%q<termios>, [">= 0"])
      s.add_runtime_dependency(%q<trollop>, [">= 1.10.2"])
      s.add_runtime_dependency(%q<chronic>, [">= 0.2.3"])
      s.add_runtime_dependency(%q<highline>, [">= 1.5.1"])
    else
      s.add_dependency(%q<termios>, [">= 0"])
      s.add_dependency(%q<trollop>, [">= 1.10.2"])
      s.add_dependency(%q<chronic>, [">= 0.2.3"])
      s.add_dependency(%q<highline>, [">= 1.5.1"])
    end
  else
    s.add_dependency(%q<termios>, [">= 0"])
    s.add_dependency(%q<trollop>, [">= 1.10.2"])
    s.add_dependency(%q<chronic>, [">= 0.2.3"])
    s.add_dependency(%q<highline>, [">= 1.5.1"])
  end
end