class ActiveAdmin::CSVBuilder

def method_missing(method, *args, &block)

def method_missing(method, *args, &block)
  if @view_context.respond_to? method
    @view_context.public_send method, *args, &block
  else
    super
  end
end