-
Notifications
You must be signed in to change notification settings - Fork 8
/
Breeze.podspec
43 lines (30 loc) · 2.71 KB
/
Breeze.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
34
35
36
37
38
39
40
41
42
43
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "Breeze"
s.version = "0.0.1"
s.summary = "Breeze is a lightweight CoreData manager written in Swift!"
s.description = <<-DESC
Breeze takes a lot of cues from both [MagicalRecord](https://github.com/magicalpanda/MagicalRecord) and [Nimble](https://github.com/MarcoSero/Nimble)
* Lightweight and simple to use
* 1 row of code to find first/any object in database
* iCloud support
* Simple architecture using only a main and a background context.
DESC
s.homepage = "https://github.com/andrelind/Breeze"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => "MIT", :file => "LICENSE" }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = "André Lind"
s.social_media_url = "http://twitter.com/FixingKitty"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios, "7.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/andrelind/Breeze.git", :tag => "0.0.1" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "Breeze", "Breeze/**/*.{h,m,swift}"
s.exclude_files = "Breeze/Exclude"
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = "CoreData"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.requires_arc = true
end