-
Notifications
You must be signed in to change notification settings - Fork 23
/
TryParsec.podspec
51 lines (43 loc) · 1.46 KB
/
TryParsec.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Pod::Spec.new do |s|
s.name = 'TryParsec'
s.version = '0.1.0'
s.license = { :type => 'MIT' }
s.homepage = 'https://github.com/inamiy/TryParsec'
s.authors = { 'Yasuhiro Inami' => '[email protected]' }
s.summary = 'Monadic parser combinator for try! Swift.'
s.source = { :git => 'https://github.com/inamiy/TryParsec.git', :tag => "#{s.version}" }
s.osx.deployment_target = '10.9'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source_files = 'Sources/**/*.swift'
s.dependency 'Result', '~> 1.0'
#
# Comment-Out:
# Conflicts with Swift-Package-Manager's source-layout,
# which creates multiple libraries from multiple subdirectories.
#
# See also:
# https://github.com/apple/swift-package-manager/blob/master/Documentation/SourceLayouts.md
#
# s.subspec "Core" do |ss|
# ss.source_files = 'Sources/*.swift', 'Sources/Base/*.swift'
# ss.dependency 'Result', '~> 1.0'
# end
# s.subspec "Arithmetic" do |ss|
# ss.source_files = 'Sources/Arithmetic/*.swift'
# ss.dependency 'Result', '~> 1.0'
# end
# s.subspec "CSV" do |ss|
# ss.source_files = 'Sources/CSV/*.swift'
# ss.dependency 'Result', '~> 1.0'
# end
# s.subspec "XML" do |ss|
# ss.source_files = 'Sources/XML/*.swift'
# ss.dependency 'Result', '~> 1.0'
# end
# s.subspec "JSON" do |ss|
# ss.source_files = 'Sources/JSON/*.swift'
# ss.dependency 'Result', '~> 1.0'
# end
end