-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
André Lind
committed
Aug 13, 2014
1 parent
bd65a2f
commit 4794f70
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
Pod::Spec.new do |s| | ||
|
||
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # | ||
s.name = "Breeze" | ||
s.version = "0.0.1" | ||
s.summary = "A short description of Breeze." | ||
|
||
s.description = <<-DESC | ||
Breeze is a lightweight CoreData-manager written in Swift! | ||
It's taking 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 => "https://github.com/andrelind/Breeze/blob/master/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 |