forked from 3lvis/DATAStack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DATAStack.podspec
33 lines (33 loc) · 1.08 KB
/
DATAStack.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
Pod::Spec.new do |s|
s.name = "DATAStack"
s.version = "8.0.1"
s.summary = "100% Swift Simple Boilerplate Free Core Data Stack"
s.description = <<-DESC
* Easier thread safety
* Runs synchronously in testing enviroments
* No singletons
* SQLite and InMemory support out of the box
* Easy database drop method
* Swift
* Objective-C support
* Free
DESC
s.homepage = "https://github.com/3lvis/DATAStack"
s.license = {
:type => 'MIT',
:file => 'LICENSE.md'
}
s.author = { "Elvis Nuñez" => "[email protected]" }
s.social_media_url = "http://twitter.com/3lvis"
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.source = {
:git => 'https://github.com/3lvis/DATAStack.git',
:tag => s.version.to_s
}
s.source_files = 'Source/'
s.frameworks = 'Foundation', 'CoreData'
s.requires_arc = true
end