Sha256: e25d16ad79a20e64e8b8651d25a26c84bb825a784a1bfffb7a2264fc2973d038
Contents?: true
Size: 786 Bytes
Versions: 6
Compression:
Stored size: 786 Bytes
Contents
require_relative "../tool/tool" module Pod class Prebuild # Pass the data between the 2 steps # # At step 2, the normal pod install, it needs some info of the # prebuilt step. So we store it here. # class Passer # indicate the add/remove/update of prebuit pods # @return [Analyzer::SpecsState] # class_attr_accessor :prebuild_pods_changes # Some pod won't be build in prebuild stage even if it have `binary=>true`. # The targets of this pods have `oshould_build? == true`. # We should skip integration (patch spec) for this pods # # @return [Array<String>] class_attr_accessor :target_names_to_skip_integration_framework self.target_names_to_skip_integration_framework = [] end end end
Version data entries
6 entries across 6 versions & 1 rubygems