class ActiveAdmin::AbstractViewFactory

def respond_to_missing?(method, include_private)

def respond_to_missing?(method, include_private)
  key = key_from_method_name(method)
  if has_key?(key)
    true
  else
    super
  end
end