Commit 2e98e333 authored by Cédric Luthi's avatar Cédric Luthi

Handle the build_configurations parameter in Xcodeproj::Project subclasses

parent 20d9f221
...@@ -17,8 +17,8 @@ module Pod ...@@ -17,8 +17,8 @@ module Pod
# @param [Sandbox] sandbox @see #sandbox # @param [Sandbox] sandbox @see #sandbox
# #
def initialize(sandbox) def initialize(sandbox, build_configurations)
super(nil) # Recreate the project from scratch for now. super(nil, build_configurations) # Recreate the project from scratch for now.
# TODO # TODO
raise unless sandbox.is_a?(Sandbox) raise unless sandbox.is_a?(Sandbox)
@sandbox = sandbox @sandbox = sandbox
......
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