diff options
Diffstat (limited to 'hcl.gemspec')
| -rw-r--r-- | hcl.gemspec | 17 | 
1 files changed, 13 insertions, 4 deletions
diff --git a/hcl.gemspec b/hcl.gemspec index ac2543b..8a69f45 100644 --- a/hcl.gemspec +++ b/hcl.gemspec @@ -1,3 +1,6 @@ +# Generated by jeweler +# DO NOT EDIT THIS FILE DIRECTLY +# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command  # -*- encoding: utf-8 -*-  Gem::Specification.new do |s| @@ -6,7 +9,7 @@ Gem::Specification.new do |s|    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.date = %q{2010-04-02}    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} @@ -38,11 +41,10 @@ Gem::Specification.new do |s|       "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.rubygems_version = %q{1.3.6}    s.summary = %q{Harvest timesheets from the command-line}    s.test_files = [      "test/app_test.rb", @@ -53,23 +55,30 @@ Gem::Specification.new do |s|    if s.respond_to? :specification_version then      current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION -    s.specification_version = 2 +    s.specification_version = 3      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"]) +      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"]) +      s.add_dependency(%q<shoulda>, [">= 0"]) +      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"]) +    s.add_dependency(%q<shoulda>, [">= 0"]) +    s.add_dependency(%q<mocha>, [">= 0"])    end  end +  | 
