Skip to content

Commit

Permalink
Merged Boxer-Bundler project into mainline Boxer to simplify deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
alinebee committed Nov 2, 2012
1 parent 69f78c4 commit 839dfd5
Show file tree
Hide file tree
Showing 16 changed files with 7,139 additions and 0 deletions.
215 changes: 215 additions & 0 deletions Boxer.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions Bundler/BBAppDelegate+AppExporting.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//
// BBAppDelegate+AppExporting.h
// Boxer Bundler
//
// Created by Alun Bestor on 25/08/2012.
// Copyright (c) 2012 Alun Bestor. All rights reserved.
//

#import "BBAppDelegate.h"

@interface BBAppDelegate (AppExporting)

//Begin asynchronously creating a new app at the specified destination URL.
//completionHandler is called upon completion, with the resulting URL and nil (if successful)
//or nil and an error representing the reason for failure (if unsuccessful).
- (void) createAppAtDestinationURL: (NSURL *)destinationURL
completion: (void(^)(NSURL *appURL, NSError *error))completionHandler;

//Synchronously create a new app at the specified destination URL, using our current parameters.
//Returns the URL of the generated app, or nil and populates outError upon failure.
//This method can safely overwrite an existing app at destinationURL; if the app creation fails,
//any existing app will be left untouched.
- (NSURL *) createAppAtDestinationURL: (NSURL *)destinationURL
error: (NSError **)outError;

@end
Loading

0 comments on commit 839dfd5

Please sign in to comment.