mirror of
https://github.com/zhigang1992/SwiftParsec.git
synced 2026-01-12 22:52:43 +08:00
17 lines
605 B
Ruby
17 lines
605 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SwiftParsec'
|
|
s.version = '2.1'
|
|
s.license = '2-clause BSD'
|
|
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 = '9.0'
|
|
s.osx.deployment_target = '10.10'
|
|
s.tvos.deployment_target = '9.0'
|
|
s.watchos.deployment_target = '2.0'
|
|
|
|
s.source_files = 'Sources/SwiftParsec/*.swift'
|
|
end
|