Skip to content

Commit

Permalink
Bump to 0.14.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
josevalim committed Jul 26, 2010
1 parent db85b66 commit 4647c98
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

* Added :lazy_default which is only triggered if a switch is given
* Added Thor::Shell::HTML
* Added subcommands
* Decoupled Thor::Group and Thor, so it's easier to vendor
* Added check_unknown_options! in case you want error messages to be raised in valid switches
* run(command) should return the results of command
Expand Down
4 changes: 2 additions & 2 deletions Thorfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ rescue LoadError
end

GEM_NAME = 'thor'
EXTRA_RDOC_FILES = ["README.rdoc", "LICENSE", "CHANGELOG.rdoc", "VERSION", "Thorfile"]
EXTRA_RDOC_FILES = ["README.md", "LICENSE", "CHANGELOG.rdoc", "VERSION", "Thorfile"]

class Default < Thor
include Thor::RakeCompat
Expand Down Expand Up @@ -44,7 +44,7 @@ class Default < Thor
require 'jeweler'
Jeweler::Tasks.new do |s|
s.name = GEM_NAME
s.version = Thor::VERSION
s.version = Thor::VERSION.dup
s.rubyforge_project = "textmate"
s.platform = Gem::Platform::RUBY
s.summary = "A scripting framework that replaces rake, sake and rubigen"
Expand Down
2 changes: 1 addition & 1 deletion lib/thor/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
class Thor
VERSION = "0.13.8".freeze
VERSION = "0.14.0".freeze
end
8 changes: 4 additions & 4 deletions thor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,24 @@

Gem::Specification.new do |s|
s.name = %q{thor}
s.version = "0.13.8"
s.version = "0.14.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Yehuda Katz", "Jos\303\251 Valim"]
s.date = %q{2010-07-16}
s.date = %q{2010-07-26}
s.description = %q{A scripting framework that replaces rake, sake and rubigen}
s.email = %q{ruby-thor@googlegroups.com}
s.executables = ["thor", "rake2thor"]
s.extra_rdoc_files = [
"CHANGELOG.rdoc",
"LICENSE",
"README.rdoc",
"README.md",
"Thorfile"
]
s.files = [
"CHANGELOG.rdoc",
"LICENSE",
"README.rdoc",
"README.md",
"Thorfile",
"bin/rake2thor",
"bin/thor",
Expand Down

0 comments on commit 4647c98

Please sign in to comment.