forked from Frugghi/SwiftLCS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftLCS.podspec
27 lines (22 loc) · 986 Bytes
/
SwiftLCS.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
Pod::Spec.new do |spec|
spec.name = "SwiftLCS"
spec.version = "1.0.1"
spec.summary = "SwiftLCS is a Swift implementation of longest common subsequence (LCS) algorithm."
spec.homepage = "https://github.com/Frugghi/SwiftLCS"
spec.license = "MIT"
spec.authors = { "Tommaso Madonia" => "[email protected]" }
spec.social_media_url = "https://twitter.com/Frugghi"
spec.source = { :git => "https://github.com/Frugghi/SwiftLCS.git", :tag => spec.version.to_s }
spec.requires_arc = true
spec.default_subspec = "Foundation"
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.9"
spec.watchos.deployment_target = "2.0"
spec.subspec 'Core' do |core|
core.source_files = 'SwiftLCS/SwiftLCS.swift'
end
spec.subspec 'Foundation' do |foundation|
foundation.source_files = 'SwiftLCS/SwiftLCS+Foundation.swift'
foundation.dependency 'SwiftLCS/Core'
end
end