Skip to content

Instantly share code, notes, and snippets.

@artemch
Last active March 9, 2017 22:19
Show Gist options
  • Select an option

  • Save artemch/cd64626491e0bf224cae55c2e7051363 to your computer and use it in GitHub Desktop.

Select an option

Save artemch/cd64626491e0bf224cae55c2e7051363 to your computer and use it in GitHub Desktop.
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