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

[PodTarget] Add optional constructor argument 'scoped'

parent a5f0f487
......@@ -25,11 +25,13 @@ module Pod
# @param [Specification] spec @see spec
# @param [Array<TargetDefinition>] target_definitions @see target_definitions
# @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
@target_definitions = target_definitions
@sandbox = sandbox
@scoped = scoped
@build_headers = Sandbox::HeadersStore.new(sandbox, 'Private')
@file_accessors = []
@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