-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Syntaxis.podspec
33 lines (28 loc) · 1.26 KB
/
Syntaxis.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Be sure to run `pod spec lint Syntaxis.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "Syntaxis"
spec.version = "0.2.2"
spec.summary = "Yet another functional parser library"
spec.homepage = "https://github.com/kronenthaler/Syntaxis"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "kronenthaler" => "[email protected]" }
spec.source = { :git => "https://github.com/kronenthaler/Syntaxis.git", :tag => "#{spec.version}" }
spec.description = <<-DESC
A parsing library based on the concept of parsing combinators.
Allows to create parsers that read as a BNF specification and allows to construct
AST objects as the parser goes along.
DESC
spec.ios.deployment_target = "11.0"
spec.osx.deployment_target = "10.15"
spec.requires_arc = true
spec.swift_versions = [ 5.0, 5.1, 5.2 ]
spec.source_files = "Classes/**/*.{swift,h}"
spec.public_header_files = "Classes/**/*.h"
spec.preserve_paths = ["README.md", "LICENSE"]
end