module Icalendar::HasComponents

def respond_to_missing?(method_name, include_private = false)

def respond_to_missing?(method_name, include_private = false)
  string_method = method_name.to_s
  string_method.start_with?('add_x_') || custom_component(string_method).size > 0 || super
end