# File lib/capistrano/command.rb, line 72 def method_missing(sym, *args, &block) if server.respond_to?(sym) server.send(sym, *args, &block) elsif configuration.respond_to?(sym) configuration.send(sym, *args, &block) else super end end