Skip to content

Instantly share code, notes, and snippets.

@ricobeck
Created September 14, 2018 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricobeck/7a00918d4d88ca836ae2de7538c721ee to your computer and use it in GitHub Desktop.
Save ricobeck/7a00918d4d88ca836ae2de7538c721ee to your computer and use it in GitHub Desktop.
Pod::Spec.new do |spec|
spec.name = "R.swift.Library"
spec.version = "5.0.0.alpha.2"
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.osx.deployment_target = '10.14'
spec.module_name = "Rswift"
spec.source_files = "Library/**/*.swift"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment