From a8ba9bd0f7128a276abbea33561dd09d07f32d5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Tue, 27 Jan 2009 23:27:14 +0100 Subject: [PATCH] release 0.9.10 --- Thorfile | 2 +- thor.gemspec | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/Thorfile b/Thorfile index f460f880b..d7391c881 100644 --- a/Thorfile +++ b/Thorfile @@ -3,7 +3,7 @@ require 'rubygems/specification' require 'thor/tasks' GEM = "thor" -GEM_VERSION = "0.9.9" +GEM_VERSION = "0.9.10" AUTHOR = "Yehuda Katz" EMAIL = "wycats@gmail.com" HOMEPAGE = "http://yehudakatz.com" diff --git a/thor.gemspec b/thor.gemspec index 4aa6bc91e..ed673c950 100644 --- a/thor.gemspec +++ b/thor.gemspec @@ -1,27 +1,29 @@ +# -*- encoding: utf-8 -*- + Gem::Specification.new do |s| s.name = %q{thor} - s.version = "0.9.8" + s.version = "0.9.10" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Yehuda Katz"] - s.date = %q{2008-08-27} + s.date = %q{2009-01-27} s.description = %q{A gem that maps options to a class} s.email = %q{wycats@gmail.com} s.executables = ["thor", "rake2thor"] - s.extra_rdoc_files = ["README.markdown", "CHANGELOG.rdoc", "LICENSE"] + s.extra_rdoc_files = ["README.markdown", "LICENSE", "CHANGELOG.rdoc"] s.files = ["README.markdown", "LICENSE", "CHANGELOG.rdoc", "Rakefile", "bin/rake2thor", "bin/thor", "lib/thor", "lib/thor/error.rb", "lib/thor/options.rb", "lib/thor/ordered_hash.rb", "lib/thor/runner.rb", "lib/thor/task.rb", "lib/thor/task_hash.rb", "lib/thor/tasks", "lib/thor/tasks/package.rb", "lib/thor/tasks.rb", "lib/thor/util.rb", "lib/thor.rb"] s.has_rdoc = true s.homepage = %q{http://yehudakatz.com} s.require_paths = ["lib"] s.rubyforge_project = %q{thor} - s.rubygems_version = %q{1.2.0} + s.rubygems_version = %q{1.3.1} s.summary = %q{A gem that maps options to a class} if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION s.specification_version = 2 - if current_version >= 3 then + if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then else end else