class FnordMetric::Context::Proxy

Public Class Methods

new(_ref) click to toggle source
# File lib/fnordmetric/context.rb, line 7
def initialize(_ref)
  @ref = _ref
end

Public Instance Methods

method_missing(method, *args, &block) click to toggle source
# File lib/fnordmetric/context.rb, line 11
def method_missing(method, *args, &block)
  @ref.dispatch(method, *args, &block)
end