-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSparse.podspec
21 lines (20 loc) · 1.02 KB
/
Sparse.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = 'Sparse'
s.version = '0.4.1'
s.swift_version = '5.1'
s.summary = 'Sparse is a simple parsing library written in Swift.'
s.description = <<-DESC
Sparse is a simple parsing library, written in Swift. It is based
on the parser-combinator approach as used by Haskell's Parsec.
Its focus is on natural language parser creation and descriptive
error messages.
DESC
s.homepage = 'https://github.com/johnpatrickmorgan/Sparse'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'johnpatrickmorgan' => 'johnpatrickmorganuk@gmail.com' }
s.source = { :git => 'https://github.com/johnpatrickmorgan/Sparse.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/jpmmusic'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.source_files = 'Sources/Sparse/**/*'
end