# File lib/naught/null_class_builder/commands/pebble.rb, line 12 def call defer do |subject| subject.module_exec(@output) do |output| define_method(:method_missing) do |method_name, *args, &block| pretty_args = args.collect(&:inspect).join(', ').gsub("\"", "'") output.puts "#{method_name}(#{pretty_args}) from #{parse_caller}" self end def parse_caller caller = Kernel.caller(2).first method_name = caller.match(/\`([\w\s]+(\(\d+\s\w+\))?[\w\s]*)/) method_name ? method_name[1] : caller end private :parse_caller end end end
Generated with the Darkfish Rdoc Generator 2.