# File lib/safemode/scope.rb, line 33 def method_missing(method, *args, &block) if @locals.has_key?(method) @locals[method] elsif @delegate_methods.include?(method) @delegate.send method, *unjail_args(args), &block else raise Safemode::SecurityError.new(method, "#<Safemode::ScopeObject>") end end