Commit 9a4f361d authored by Marius Rackwitz's avatar Marius Rackwitz

[PodTarget] Add optional constructor argument 'scoped'

parent a5f0f487
...@@ -25,11 +25,13 @@ module Pod ...@@ -25,11 +25,13 @@ module Pod
# @param [Specification] spec @see spec # @param [Specification] spec @see spec
# @param [Array<TargetDefinition>] target_definitions @see target_definitions # @param [Array<TargetDefinition>] target_definitions @see target_definitions
# @param [Sandbox] sandbox @see sandbox # @param [Sandbox] sandbox @see sandbox
# @param [Bool] scoped @see scoped
# #
def initialize(specs, target_definitions, sandbox) def initialize(specs, target_definitions, sandbox, scoped = false)
@specs = specs @specs = specs
@target_definitions = target_definitions @target_definitions = target_definitions
@sandbox = sandbox @sandbox = sandbox
@scoped = scoped
@build_headers = Sandbox::HeadersStore.new(sandbox, 'Private') @build_headers = Sandbox::HeadersStore.new(sandbox, 'Private')
@file_accessors = [] @file_accessors = []
@resource_bundle_targets = [] @resource_bundle_targets = []
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment