forked from mac-cain13/R.swift.Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
R.swift.Library.podspec
29 lines (20 loc) · 1.2 KB
/
R.swift.Library.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Pod::Spec.new do |spec|
spec.name = "R.swift.Library"
spec.version = "5.0.0"
spec.license = "MIT"
spec.summary = "Companion library for R.swift, featuring types used to type resources"
spec.description = <<-DESC
This library contains types used by the `R.generated.swift` file that is normally generated by R.swift. R.swift depends on this pod to include some types and other libraries can use this project to extend R.swift types.
R.swift is a tool to get strong typed, autocompleted resources like images, fonts and segues in Swift projects.
DESC
spec.homepage = "https://github.com/mac-cain13/R.swift.Library"
spec.author = { "Mathijs Kadijk" => "[email protected]" }
spec.social_media_url = "https://twitter.com/mac_cain13"
spec.requires_arc = true
spec.source = { :git => "https://github.com/mac-cain13/R.swift.Library.git", :tag => "v#{spec.version}" }
spec.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }
spec.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'
spec.module_name = "Rswift"
spec.source_files = "Library/**/*.swift"
end