Skip to content

Commit

Permalink
Flatten hierarchy for pods that specify use_frameworks!
Browse files Browse the repository at this point in the history
  • Loading branch information
ailiao committed Sep 18, 2015
1 parent dd0094e commit 427316b
Show file tree
Hide file tree
Showing 20 changed files with 96 additions and 110 deletions.
186 changes: 86 additions & 100 deletions Unirest.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions Unirest/UNIHTTPClientHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#import "HttpResponse/UNIHTTPResponse.h"
#import "UNIHTTPResponse.h"
#import "UNIHTTPRequest.h"
#import "UNIHTTPRequestWithBody.h"
#import "HttpRequest/UNISimpleRequest.h"
#import "UNISimpleRequest.h"
#import "UNIUrlConnection.h"

#define BOUNDARY @"---------------------------17237809831461299884346131229"
Expand Down
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions Unirest/UNIHTTPRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

#import "HttpResponse/UNIHTTPStringResponse.h"
#import "HttpResponse/UNIHTTPBinaryResponse.h"
#import "HttpResponse/UNIHTTPJsonResponse.h"
#import "UNIHTTPStringResponse.h"
#import "UNIHTTPBinaryResponse.h"
#import "UNIHTTPJsonResponse.h"
#import "UNIUrlConnection.h"

typedef NS_ENUM(NSInteger, UNIHTTPMethod) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions Unirest/UNIRest.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#import <Foundation/Foundation.h>
#import "UNIHTTPRequest.h"
#import "UNIHTTPRequestWithBody.h"
#import "HttpRequest/UNISimpleRequest.h"
#import "HttpRequest/UNIBodyRequest.h"
#import "HttpResponse/UNIHTTPBinaryResponse.h"
#import "HttpResponse/UNIHTTPJsonResponse.h"
#import "HttpResponse/UNIHTTPStringResponse.h"
#import "UNISimpleRequest.h"
#import "UNIBodyRequest.h"
#import "UNIHTTPBinaryResponse.h"
#import "UNIHTTPJsonResponse.h"
#import "UNIHTTPStringResponse.h"

typedef void (^UNISimpleRequestBlock)(UNISimpleRequest* simpleRequest);
typedef void (^UNIBodyRequestBlock)(UNIBodyRequest* unibodyRequest);
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 427316b

Please sign in to comment.