-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathDFSearchKit.podspec
More file actions
23 lines (22 loc) · 950 Bytes
/
DFSearchKit.podspec
File metadata and controls
23 lines (22 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "DFSearchKit"
s.version = "1.5"
s.summary = "A framework implementing a search index and summary generator using SKSearchKit for both Swift and Objective-C"
s.description = <<-DESC
A framework implementing a search index and summary generator using SKSearchKit for both Swift and Objective-C
DESC
s.homepage = "https://github.com/dagronf/DFSearchKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Darren Ford" => "dford_au-reg@yahoo.com" }
s.social_media_url = ""
s.osx.deployment_target = "10.11"
s.source = { :git => ".git", :tag => s.version.to_s }
s.source_files = "Sources/DFSearchKit/*.swift"
s.frameworks = "Cocoa"
s.swift_version = "5.0"
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = [
'Tests/DFSearchKitTests/*.swift',
'Tests/DFSearchKitTests/Resources/*.swift']
end
end