forked from box/box-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoxSDK.podspec
More file actions
23 lines (22 loc) · 875 Bytes
/
BoxSDK.podspec
File metadata and controls
23 lines (22 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |spec|
spec.name = "BoxSDK"
spec.version = "4.1.0"
spec.summary = "Box Swift SDK"
spec.description = <<-DESC
Official Box Swift SDK.
DESC
spec.homepage = "https://github.com/box/box-ios-sdk"
spec.license = "Apache License, Version 2.0"
spec.author = { "Box" => "sdks@box.com" }
spec.social_media_url = "https://twitter.com/box"
spec.ios.deployment_target = "11.0"
spec.source = { :git => "https://github.com/box/box-ios-sdk.git", :tag => "v"+spec.version.to_s }
spec.swift_versions = ["5.0", "5.1", "5.2"]
spec.requires_arc = true
spec.default_subspec = "Core"
spec.subspec "Core" do |ss|
ss.source_files = "Sources/**/*.swift" , "Sources/**/Environment.plist"
# spec.exclude_files = "Sources/Exclude"
ss.framework = "Foundation"
end
end