forked from mac-cain13/R.swift.Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathR.swift.Library.podspec
27 lines (19 loc) · 1.13 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
Pod::Spec.new do |spec|
spec.name = "R.swift.Library"
spec.version = "3.0.1"
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" => "mkadijk@gmail.com" }
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.ios.deployment_target = '8.0'
spec.tvos.deployment_target = '9.0'
spec.module_name = "Rswift"
spec.source_files = "Library/**/*.swift"
end