forked from pksprojects/ElasticSwift
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathElasticSwiftQueryDSL.podspec
25 lines (19 loc) · 1.01 KB
/
ElasticSwiftQueryDSL.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
Pod::Spec.new do |s|
s.name = "ElasticSwiftQueryDSL"
s.version = "1.0.0-beta.1"
s.summary = "Elasticsearch QueryDSL for ElasticSwift"
s.description = "ElasticSwift allows you to bring prower of elasticsearch in your apps on macOS, iOS, tvOS, watchOS and linux."
s.homepage = "http://github.com/pksprojects/ElasticSwift"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "pksprojects" => "[email protected]" }
s.source = { :git => "https://github.com/pksprojects/ElasticSwift.git", :tag => "v#{s.version}", :submodules => true }
s.swift_version = '5.0'
s.cocoapods_version = '>=1.6.0'
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '10.0'
s.source_files = 'Sources/ElasticSwiftQueryDSL/**/*.swift'
s.dependency 'ElasticSwiftCodableUtils', "#{s.version}"
s.dependency 'ElasticSwiftCore', "#{s.version}"
s.dependency 'Logging', '~> 1.4'
end