# File lib/capistrano/configuration/namespaces.rb, line 191 def method_missing(sym, *args, &block) if parent.respond_to?(sym) parent.send(sym, *args, &block) else super end end
# File lib/capistrano/configuration/namespaces.rb, line 204 def explicitly_define_clashing_kernel_methods (parent.public_methods & Kernel.methods).each do |m| next if self.method(m).owner == self.class if parent.method(m).owner == parent.class metaclass = class << self; self; end metaclass.send(:define_method, m) {|*args, &block| parent.send(m, *args, &block)} end end end
Generated with the Darkfish Rdoc Generator 2.