# File lib/adhearsion/component_manager.rb, line 126
      def start
        return if @started
        manager.started_components << @name
        @started = true
        @component_module = ComponentModule.new(self) do |component_module|
          Component.prepare_component_class(component_module, @name)
          component_module.load_configuration_file
        end
        @component_module.require(File.join("lib", @name.to_s))
      end