Created
September 14, 2018 16:02
-
-
Save ricobeck/d3a53af4fe51461678f365dd3d7fe2b5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |spec| | |
spec.name = "R.swift" | |
spec.version = "5.0.0.alpha.2" | |
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/v#{spec.version}/rswift-#{spec.version}.zip" } | |
spec.ios.deployment_target = '8.0' | |
spec.tvos.deployment_target = '9.0' | |
spec.osx.deployment_target = '10.14' | |
spec.dependency "R.swift.Library", "~> 5.0.0.alpha.2" | |
spec.preserve_paths = "rswift" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment