forked from defagos/CoconutKit
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
1 changed file
with
6 additions
and
8 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 |
---|---|---|
@@ -1,21 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'CoconutKit' | ||
s.version = '1.1.4' | ||
s.version = '2.0' | ||
s.license = 'MIT' | ||
s.summary = 'CoconutKit is a library of high-quality iOS components' | ||
s.homepage = 'https://github.com/defagos/CoconutKit' | ||
s.author = { 'Samuel Défago' => '[email protected]' } | ||
s.source = { :git => 'git://github.com/defagos/CoconutKit-CocoaPods.git', :tag => '2.0' } | ||
s.platform = :ios, '4.0' | ||
|
||
s.description = 'CoconutKit is a library of high-quality iOS components written at hortis le studio and in my spare time. It includes several tools for dealing with view controllers, multi-threading, view animations, as well as some new controls and various utility classes. These components are meant to make the life of an iOS programmer easier by reducing the boilerplate code written every day, improving code quality and enforcing solid application architecture.' | ||
|
||
s.platform = :ios | ||
|
||
s.source = { :git => 'git://github.com/defagos/CoconutKit-binaries.git', :tag => '1.1.4' } | ||
|
||
s.source_files = 'empty.m' | ||
s.source_files = 'Sources/**/*.{h,m}', 'PublicHeaders/**/*.h' | ||
s.resources = 'CoconutKit-resources.bundle' | ||
|
||
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PODS_ROOT)/CoconutKit', 'OTHER_LDFLAGS' => '-framework CoconutKit' } | ||
s.public_header_files = 'PublicHeaders/*.h' | ||
|
||
s.frameworks = 'CoreData', 'MessageUI', 'QuartzCore' | ||
s.requires_arc = false | ||
end |