Method not available on this version
This method is only available on newer versions.
The first available version (v2_6_3) is shown here.
help(meth = nil)
public
# File lib/bundler/vendor/thor/lib/thor/runner.rb, line 22
def help(meth = nil)
if meth && !respond_to?(meth)
initialize_thorfiles(meth)
klass, command = Bundler::Thor::Util.find_class_and_command_by_namespace(meth)
self.class.handle_no_command_error(command, false) if klass.nil?
klass.start(["-h", command].compact, :shell => shell)
else
super
end
end