-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAgileDB.podspec
More file actions
23 lines (18 loc) · 767 Bytes
/
AgileDB.podspec
File metadata and controls
23 lines (18 loc) · 767 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 = "AgileDB"
s.version = "6.5.7"
s.summary = "Save and retrieve full object graphs to SQLite"
s.homepage = "https://github.com/AaronBratcher/AgileDB"
s.license = "MIT"
s.author = { "Aaron Bratcher" => "aaronlbratcher@yahoo.com" }
s.social_media_url = "http://twitter.com/AaronLBratcher"
s.swift_version = '5.5'
s.ios.deployment_target = "14.2"
s.osx.deployment_target = "10.15"
s.watchos.deployment_target = "8.7"
s.tvos.deployment_target = "13.0"
s.frameworks = 'Foundation'
s.source = { :git => "https://github.com/AaronBratcher/AgileDB.git", :tag => s.version }
s.source_files = "AgileDB", "Sources/AgileDB/**/*.{h,m,swift}"
s.library = "sqlite3"
end