Last active
March 9, 2017 22:19
-
-
Save artemch/cd64626491e0bf224cae55c2e7051363 to your computer and use it in GitHub Desktop.
Cocoapods podspec for https://github.com/typelift/Focus
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 |s| | |
| s.name = "Focus" | |
| s.version = "0.3.1" | |
| s.license = "MIT" | |
| s.summary = "Focus is an Optics library for Swift (where Optics includes Lens, Prisms, and Isos) that is inspired by Haskell's Lens library." | |
| s.homepage = "https://github.com/typelift/Focus" | |
| s.source = { :git => 'https://github.com/typelift/Focus.git', | |
| :tag => "#{s.version}", :submodules => true | |
| } | |
| s.author = { "" => "" } | |
| s.header_mappings_dir = 'Sources' | |
| s.source_files = "Sources/*.swift" | |
| s.module_name = 'Focus' | |
| s.requires_arc = true | |
| s.ios.deployment_target = '8.0' | |
| s.osx.deployment_target = '10.9' | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment