Skip to content

Commit e76a280

Browse files
committed
Add AppStoreConnect spec
1 parent 45f1a05 commit e76a280

File tree

510 files changed

+203371
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

510 files changed

+203371
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Pod::Spec.new do |s|
2+
s.source_files = '*.swift'
3+
s.name = 'AppStoreConnect'
4+
s.authors = 'Yonas Kolb'
5+
s.summary = 'A generated API'
6+
s.version = '1.2'
7+
s.homepage = 'https://github.com/yonaskolb/SwagGen'
8+
s.source = { :git => 'git@github.com:https://github.com/yonaskolb/SwagGen.git' }
9+
s.ios.deployment_target = '9.0'
10+
s.tvos.deployment_target = '9.0'
11+
s.osx.deployment_target = '10.9'
12+
s.source_files = 'Sources/**/*.swift'
13+
s.dependency 'Alamofire', '~> 4.9.0'
14+
end
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
github "Alamofire/Alamofire" ~> 4.9.0
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+
// swift-tools-version:4.0
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "AppStoreConnect",
7+
products: [
8+
.library(name: "AppStoreConnect", targets: ["AppStoreConnect"])
9+
],
10+
dependencies: [
11+
.package(url: "https://github.com/Alamofire/Alamofire.git", .exact("4.9.0")),
12+
],
13+
targets: [
14+
.target(name: "AppStoreConnect", dependencies: [
15+
"Alamofire",
16+
], path: "Sources")
17+
]
18+
)

0 commit comments

Comments
 (0)