-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathTurf.podspec
More file actions
21 lines (19 loc) · 857 Bytes
/
Turf.podspec
File metadata and controls
21 lines (19 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "Turf"
s.version = "0.0.1"
s.summary = "Fully Swift compatible, strongly typed document store built upon SQLite."
s.license = { :type => "MIT", :file => "LICENSE" }
s.description = <<-DESC
Turf is a strongly typed database built from the ground up for Swift. It provides an
extemely safe wrapper around SQLite3 enabling easy, performant peristence of `struct`s,
`class`es, `enum`s or tuples.
DESC
s.homepage = "https://github.com/TurfDb/Turf"
s.author = { "Jordan Hamill" => "https://twitter.com/JayHamill22" }
s.source = { :git => "git@github.com:TurfDb/Turf.git", :tag => "#{s.version}" }
s.source_files = "Turf/**/*.{h,m,swift}"
s.libraries = 'sqlite3'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.requires_arc = true
end