forked from fthdgn/R.swift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
R.swift.podspec
36 lines (28 loc) · 1.68 KB
/
R.swift.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
30
31
32
33
34
35
36
Pod::Spec.new do |spec|
spec.name = "R.swift"
spec.version = ENV['POD_VERSION']
spec.license = "MIT"
spec.summary = "Get strong typed, autocompleted resources like images, fonts and segues in Swift projects"
spec.description = <<-DESC
R.swift is a tool to get strong typed, autocompleted resources like images, fonts and segues in Swift projects.
* Never type string identifiers again
* Supports images, fonts, storyboards, nibs, segues, reuse identifiers and more
* Compile time checks and errors instead of runtime crashes
DESC
spec.homepage = "https://github.com/mac-cain13/R.swift"
spec.documentation_url = "https://github.com/mac-cain13/R.swift/tree/master/Documentation"
spec.screenshots = [ "https://raw.githubusercontent.com/mac-cain13/R.swift/master/Documentation/Images/DemoUseImage.gif",
"https://raw.githubusercontent.com/mac-cain13/R.swift/master/Documentation/Images/DemoRenameImage.gif" ]
spec.author = { "Mathijs Kadijk" => "[email protected]" }
spec.social_media_url = "https://twitter.com/mac_cain13"
spec.requires_arc = true
spec.source = { :http => "https://github.com/mac-cain13/R.swift/releases/download/#{spec.version}/rswift-#{spec.version}.zip" }
spec.swift_version = "5.7"
spec.osx.deployment_target = '10.15'
spec.ios.deployment_target = '11'
spec.tvos.deployment_target = '11'
spec.watchos.deployment_target = '4'
spec.preserve_paths = "rswift"
spec.source_files = "Sources/RswiftResources/**/*.swift"
spec.module_name = "RswiftResources"
end