forked from jhurray/SQLiteModel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLiteModel.podspec
More file actions
32 lines (27 loc) · 1.12 KB
/
SQLiteModel.podspec
File metadata and controls
32 lines (27 loc) · 1.12 KB
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
#
# Be sure to run `pod lib lint SQLiteModel.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "SQLiteModel"
s.version = "0.3.3"
s.summary = "The easiest way to persist data in Swift"
s.description = <<-DESC
SQLiteModel is a developer friendly SQLite ORM written in swift, wrapped over SQLite.swift
DESC
s.homepage = "https://github.com/jhurray/SQLiteModel"
s.license = 'MIT'
s.author = { "Jeff Hurray" => "jhurray@umich.edu" }
s.source = { :git => "https://github.com/jhurray/SQLiteModel.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/JeffHurray'
s.requires_arc = true
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.source_files = 'SQLiteModel/*.{h,swift}'
s.libraries = 'sqlite3'
s.dependency 'SQLite.swift', '~> 0.10.1'
end