class RubyReport::Formatter
def format(value)
def format(value) value end
def initialize(obj, scope = {})
def initialize(obj, scope = {}) super(obj) @scope = scope end
def method_missing(method, *args, &block)
def method_missing(method, *args, &block) format(super) end
def respond_to_missing?(method, include_private)
def respond_to_missing?(method, include_private) super end