Sha256: 78d748dae7e9f7b06f4d41a04581c07fb8e230205c013c967932e0db717072f5

Contents?: true

Size: 414 Bytes

Versions: 2

Compression:

Stored size: 414 Bytes

Contents

module Pod
  class PrebuildSandbox < Sandbox
    # [String] standard_sandbox_path
    def self.from_standard_sandbox_path(path)
      prebuild_sandbox_path = Pathname.new(path).realpath
      new(prebuild_sandbox_path)
    end

    def self.from_standard_sandbox(sandbox)
      from_standard_sandbox_path(sandbox.root)
    end

    def project_path
        super
        # root + 'Pods.xcodeproj'
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cocoapods-jxedt-0.0.10 lib/cocoapods-jxedt/binary/helper/prebuild_sandbox.rb
cocoapods-jxedt-0.0.9 lib/cocoapods-jxedt/binary/helper/prebuild_sandbox.rb