# File lib/capistrano/configuration/namespaces.rb, line 191 191: def method_missing(sym, *args, &block) 192: if parent.respond_to?(sym) 193: parent.send(sym, *args, &block) 194: else 195: super 196: end 197: end
# File lib/capistrano/configuration/namespaces.rb, line 204 204: def explicitly_define_clashing_kernel_methods 205: (parent.public_methods & Kernel.methods).each do |m| 206: next if self.method(m).owner == self.class 207: if parent.method(m).owner == parent.class 208: metaclass = class << self; self; end 209: metaclass.send(:define_method, m) {|*args, &block| parent.send(m, *args, &block)} 210: end 211: end 212: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.