X7ROOT File Manager
Current Path:
/opt/alt/ruby26/lib64/ruby/2.6.0/bundler/vendor/thor/lib/thor
opt
/
alt
/
ruby26
/
lib64
/
ruby
/
2.6.0
/
bundler
/
vendor
/
thor
/
lib
/
thor
/
ðŸ“
..
ðŸ“
actions
📄
actions.rb
(10.11 KB)
📄
base.rb
(23.65 KB)
📄
command.rb
(4.54 KB)
ðŸ“
core_ext
📄
error.rb
(943 B)
📄
group.rb
(8.86 KB)
📄
invocation.rb
(6.05 KB)
ðŸ“
line_editor
📄
line_editor.rb
(431 B)
ðŸ“
parser
📄
parser.rb
(218 B)
📄
rake_compat.rb
(2.1 KB)
📄
runner.rb
(9.99 KB)
ðŸ“
shell
📄
shell.rb
(2.29 KB)
📄
util.rb
(8.5 KB)
📄
version.rb
(45 B)
Editing: error.rb
class Bundler::Thor # Bundler::Thor::Error is raised when it's caused by wrong usage of thor classes. Those # errors have their backtrace suppressed and are nicely shown to the user. # # Errors that are caused by the developer, like declaring a method which # overwrites a thor keyword, SHOULD NOT raise a Bundler::Thor::Error. This way, we # ensure that developer errors are shown with full backtrace. class Error < StandardError end # Raised when a command was not found. class UndefinedCommandError < Error end UndefinedTaskError = UndefinedCommandError class AmbiguousCommandError < Error end AmbiguousTaskError = AmbiguousCommandError # Raised when a command was found, but not invoked properly. class InvocationError < Error end class UnknownArgumentError < Error end class RequiredArgumentMissingError < InvocationError end class MalformattedArgumentError < InvocationError end end
Upload File
Create Folder