Files
SwiftParsec/SwiftParsec.podspec
Tom van Duist f3d4a5d57a Added podspec
2016-03-16 11:03:30 +01:00

16 lines
601 B
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Pod::Spec.new do |s|
s.name = SwiftParsec
s.version = 1.0
s.license = LICENSE
s.summary = 'SwiftParsec is a Swift port of the Parsec parser combinator library.'
s.homepage = 'https://github.com/davedufresne/SwiftParsec'
s.authors = { David Dufresne => 'https://github.com/davedufresne' }
s.source = { :git => 'https://github.com/davedufresne/SwiftParsec.git', :tag => s.version }
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
s.source_files = 'Source/*.swift'
end