Skip to content

Commit 71da008

Browse files
committed
Support Carthage
1 parent 79ba449 commit 71da008

15 files changed

+1183
-13
lines changed

Cartfile

Whitespace-only changes.

MultipartFormData-iOS/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// MultipartFormData_iOS.h
3+
// MultipartFormData-iOS
4+
//
5+
// Created by yuki.kokubun on 2017/10/29.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
//! Project version number for MultipartFormData_iOS.
11+
FOUNDATION_EXPORT double MultipartFormData_iOSVersionNumber;
12+
13+
//! Project version string for MultipartFormData_iOS.
14+
FOUNDATION_EXPORT const unsigned char MultipartFormData_iOSVersionString[];
15+
16+
// In this header, you should import all the public headers of your framework using statements like #import <MultipartFormData_iOS/PublicHeader.h>
17+
18+

MultipartFormData-iOSTests/Info.plist

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>BNDL</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>1</string>
21+
</dict>
22+
</plist>
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
//
2+
// MultipartFormData_iOSTests.swift
3+
// MultipartFormData-iOSTests
4+
//
5+
// Created by yuki.kokubun on 2017/10/29.
6+
//
7+
8+
import XCTest
9+
@testable import MultipartFormData_iOS
10+
11+
class MultipartFormData_iOSTests: XCTestCase {
12+
13+
override func setUp() {
14+
super.setUp()
15+
// Put setup code here. This method is called before the invocation of each test method in the class.
16+
}
17+
18+
override func tearDown() {
19+
// Put teardown code here. This method is called after the invocation of each test method in the class.
20+
super.tearDown()
21+
}
22+
23+
func testExample() {
24+
// This is an example of a functional test case.
25+
// Use XCTAssert and related functions to verify your tests produce the correct results.
26+
}
27+
28+
func testPerformanceExample() {
29+
// This is an example of a performance test case.
30+
self.measure {
31+
// Put the code you want to measure the time of here.
32+
}
33+
}
34+
35+
}

MultipartFormData-tvOS/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// MultipartFormData_tvOS.h
3+
// MultipartFormData-tvOS
4+
//
5+
// Created by yuki.kokubun on 2017/10/29.
6+
//
7+
8+
#import <UIKit/UIKit.h>
9+
10+
//! Project version number for MultipartFormData_tvOS.
11+
FOUNDATION_EXPORT double MultipartFormData_tvOSVersionNumber;
12+
13+
//! Project version string for MultipartFormData_tvOS.
14+
FOUNDATION_EXPORT const unsigned char MultipartFormData_tvOSVersionString[];
15+
16+
// In this header, you should import all the public headers of your framework using statements like #import <MultipartFormData_tvOS/PublicHeader.h>
17+
18+

MultipartFormData-watchOS/Info.plist

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>$(DEVELOPMENT_LANGUAGE)</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
//
2+
// MultipartFormData_watchOS.h
3+
// MultipartFormData-watchOS
4+
//
5+
// Created by yuki.kokubun on 2017/10/29.
6+
//
7+
8+
#import <WatchKit/WatchKit.h>
9+
10+
//! Project version number for MultipartFormData_watchOS.
11+
FOUNDATION_EXPORT double MultipartFormData_watchOSVersionNumber;
12+
13+
//! Project version string for MultipartFormData_watchOS.
14+
FOUNDATION_EXPORT const unsigned char MultipartFormData_watchOSVersionString[];
15+
16+
// In this header, you should import all the public headers of your framework using statements like #import <MultipartFormData_watchOS/PublicHeader.h>
17+
18+

0 commit comments

Comments
 (0)