Sha256: ce79872fece67ae3490b5938810dd91dd92e748dbfaee078a895d9dffa052ef7

Contents?: true

Size: 1.63 KB

Versions: 11

Compression:

Stored size: 1.63 KB

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
            class_attr_accessor :prebuild_pod_targets_changes

            # represent the path of resurces to copy
            class ResourcePath
                attr_accessor :real_file_path
                attr_accessor :target_file_path
            end
            # Save the resoures for static framework, and used when installing the prebuild framework
            # static framework needs copy the resurces mannully
            #
            # @return [Hash<String, [Passer::ResourcePath]>]
            class_attr_accessor :resources_to_copy_for_static_framework
            self.resources_to_copy_for_static_framework = {}

            # 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 = []

            # 编译过的framework pod 名称
            class_attr_accessor :static_build_pod_names
            self.static_build_pod_names = []

        end
    end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
cocoapods-ppbuild-1.0.9 lib/cocoapods-ppbuild/helper/passer.rb
cocoapods-zjbinary-1.0.0 lib/cocoapods-zjbinary/helper/passer.rb
cocoapods-xlbuild-1.1.2 lib/cocoapods-xlbuild/helper/passer.rb
cocoapods-xlbuild-1.1.1 lib/cocoapods-xlbuild/helper/passer.rb
cocoapods-xlbuild-1.1.0 lib/cocoapods-xlbuild/helper/passer.rb
cocoapods-xlbuild-1.0.1 lib/cocoapods-xlbuild/helper/passer.rb
cocoapods-ppbuild-1.0.6 lib/cocoapods-ppbuild/helper/passer.rb
cocoapods-xlbuild-1.0.0 lib/cocoapods-xlbuild/helper/passer.rb
cocoapods-ppbuild-1.0.5 lib/cocoapods-ppbuild/helper/passer.rb
cocoapods-ppbuild-1.0.4 lib/cocoapods-ppbuild/helper/passer.rb
cocoapods-ppbuild-1.0.3 lib/cocoapods-ppbuild/helper/passer.rb