Skip to content

Commit

Permalink
Added podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
André Lind committed Aug 13, 2014
1 parent bd65a2f commit 4794f70
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions Breeze.podspec
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

0 comments on commit 4794f70

Please sign in to comment.