Files
SwiftParsec/SwiftParsec.podspec
David Dufresne 1ac9404132 Update bundle version and podspec file
Update bundle version and podspec file to version 2.0.1
2016-10-09 14:13:07 -04:00

17 lines
607 B
Ruby

Pod::Spec.new do |s|
s.name = 'SwiftParsec'
s.version = '2.0.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