class Coupdoeil::Popover

def method_missing(method_name, *args, &)

def method_missing(method_name, *args, &)
  return super unless action_methods.include?(method_name.name)
  action_methods.each do |action_name|
    define_singleton_method(action_name) { setup_class.new(self).with_type(action_name) }
  end
  public_send(method_name)
d