Skip to content

Commit

Permalink
Properly fix the typo in runner.rb. Make a trivial change to gemspec …
Browse files Browse the repository at this point in the history
…to trigger gem rebuild
  • Loading branch information
mislav committed Aug 27, 2008
1 parent 0e3fb76 commit a5cab3f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/thor/runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ def thorfiles(relevant_to = nil)

# We want to load system-wide Thorfiles first
# so the local Thorfiles will override them.
relevant_to ? thorfiles_relevant_to(relevant_to) :
thor_root_glob + thorfiles - ["#{thor_root}/thor.yml"]
(relevant_to ? thorfiles_relevant_to(relevant_to) :
thor_root_glob) + thorfiles - ["#{thor_root}/thor.yml"]
end

def thorfiles_relevant_to(meth)
Expand Down
Binary file added thor-0.9.5.gem
Binary file not shown.
2 changes: 1 addition & 1 deletion thor.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Gem::Specification.new do |s|
s.description = %q{A gem that maps options to a class}
s.email = %q{[email protected]}
s.executables = ["thor", "rake2thor"]
s.extra_rdoc_files = ["README.markdown", "LICENSE", "CHANGELOG.rdoc"]
s.extra_rdoc_files = ["README.markdown", "CHANGELOG.rdoc", "LICENSE"]
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}
Expand Down

0 comments on commit a5cab3f

Please sign in to comment.