diff options
| -rw-r--r-- | Rakefile | 3 | ||||
| -rw-r--r-- | VERSION | 2 | ||||
| -rw-r--r-- | hcl.gemspec | 21 |
3 files changed, 12 insertions, 14 deletions
@@ -11,9 +11,10 @@ begin gem.name = "hcl" gem.summary = "Harvest timesheets from the command-line" gem.description = "HCl is a command-line client for manipulating Harvest time sheets." - gem.email = "zack@opensourcery.com" + gem.email = "zack@zackhobson.com" gem.homepage = "http://github.com/zenhob/hcl" gem.authors = ["Zack Hobson"] + gem.license = "MIT" gem.add_dependency "trollop", ">= 1.10.2" gem.add_dependency "chronic", ">= 0.2.3" gem.add_dependency "highline", ">= 1.5.1" @@ -1 +1 @@ -0.3.2 +0.4.0 diff --git a/hcl.gemspec b/hcl.gemspec index 1694376..d3edba0 100644 --- a/hcl.gemspec +++ b/hcl.gemspec @@ -4,15 +4,14 @@ # -*- encoding: utf-8 -*- Gem::Specification.new do |s| - s.name = %q{hcl} + s.name = "hcl" s.version = "0.4.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Zack Hobson"] - s.date = %q{2013-11-18} - s.default_executable = %q{hcl} - s.description = %q{HCl is a command-line client for manipulating Harvest time sheets.} - s.email = %q{zack@zackhobson.com} + s.date = "2013-11-18" + 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", @@ -41,23 +40,22 @@ Gem::Specification.new do |s| "test/test_helper.rb", "test/utility_test.rb" ] - s.homepage = %q{http://github.com/zenhob/hcl} + s.homepage = "http://github.com/zenhob/hcl" + s.licenses = ["MIT"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.4.1} - s.summary = %q{Harvest timesheets from the command-line} + s.rubygems_version = "2.0.3" + s.summary = "Harvest timesheets from the command-line" if s.respond_to? :specification_version then - s.specification_version = 3 + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= 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"]) s.add_development_dependency(%q<shoulda>, [">= 0"]) s.add_development_dependency(%q<mocha>, [">= 0"]) 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"]) @@ -65,7 +63,6 @@ Gem::Specification.new do |s| s.add_dependency(%q<mocha>, [">= 0"]) 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"]) |
