класс Bundler::Thor::DynamicTask
Динамическая команда, обрабатывающая ситуации отсутствия метода.
Публичные методы класса
# File lib/bundler/vendor/thor/lib/thor/command.rb, line 122 def initialize(name, options = nil) super(name.to_s, "A dynamically-generated command", name.to_s, name.to_s, options) end
Вызывает метод суперкласса
Bundler::Thor::Command::new Публичные методы экземпляра
# File lib/bundler/vendor/thor/lib/thor/command.rb, line 126
def run(instance, args = [])
if (instance.methods & [name.to_s, name.to_sym]).empty?
super
else
instance.class.handle_no_command_error(name)
end
end Вызывает метод суперкласса
Bundler::Thor::Command#run
Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.