self.remove_configurator_from_project

in libObjCAttr/Resources/ROADConfigurator.rb [147:157]


    def self.remove_configurator_from_project(project)
        path = project.path
        pod_path = File.dirname(path)
        configurator_path = "#{pod_path}/libObjCAttr/libObjCAttr/Resources/ROADConfigurator.rb"
        reference_for_path = project.reference_for_path(configurator_path)
        if !reference_for_path.nil?
            reference_for_path.remove_from_project()
        end
        project.save;
    end