Skip to content

Commit

Permalink
release 0.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mislav committed Jan 27, 2009
1 parent 8455c1e commit a8ba9bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Thorfile
Expand Up @@ -3,7 +3,7 @@ require 'rubygems/specification'
require 'thor/tasks' require 'thor/tasks'


GEM = "thor" GEM = "thor"
GEM_VERSION = "0.9.9" GEM_VERSION = "0.9.10"
AUTHOR = "Yehuda Katz" AUTHOR = "Yehuda Katz"
EMAIL = "wycats@gmail.com" EMAIL = "wycats@gmail.com"
HOMEPAGE = "http://yehudakatz.com" HOMEPAGE = "http://yehudakatz.com"
Expand Down
12 changes: 7 additions & 5 deletions thor.gemspec
@@ -1,27 +1,29 @@
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{thor} 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.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yehuda Katz"] 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.description = %q{A gem that maps options to a class}
s.email = %q{wycats@gmail.com} s.email = %q{wycats@gmail.com}
s.executables = ["thor", "rake2thor"] 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.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.has_rdoc = true
s.homepage = %q{http://yehudakatz.com} s.homepage = %q{http://yehudakatz.com}
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubyforge_project = %q{thor} 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} s.summary = %q{A gem that maps options to a class}


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


if current_version >= 3 then if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else else
end end
else else
Expand Down

0 comments on commit a8ba9bd

Please sign in to comment.