24 lines
767 B
Ruby
24 lines
767 B
Ruby
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
|