-
Notifications
You must be signed in to change notification settings - Fork 0
/
SQLeleCoder.podspec
34 lines (23 loc) · 1.02 KB
/
SQLeleCoder.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
Pod::Spec.new do |s|
s.name = "SQLeleCoder"
s.version = "0.0.1"
s.summary = "Extensions to insert/fetch Codable types in SQLite Databases."
s.description = <<-DESC
SQLeleCoder contains extensions to SQLele that enable you to serialize/
deserialize Codable types into/from your SQLite database with no extra work.
DESC
s.homepage = "https://github.com/ahti/SQLeleCoder"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Lukas Stabe" => "[email protected]" }
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.12"
s.tvos.deployment_target = "10.0"
s.source = { :git => "https://github.com/ahti/SQLeleCoder.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.dependency 'SQLele', '~> 0.0.1'
s.test_spec 'Tests' do |test|
test.source_files = "Tests/**/*.swift"
test.exclude_files = "Tests/LinuxMain.swift"
test.framework = "XCTest"
end
end