forked from CocoaPods/Specs
-
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
1 parent
28615a0
commit 608e99d
Showing
1 changed file
with
13 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,13 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'ADBBackgroundCells' | ||
s.version = '1.1.0' | ||
s.platform = :ios, '5.0' | ||
s.summary = 'ADBBackgroundCells allow lazy loading for UITableViewCell objects performing a long time job in background without blocking the UI.' | ||
s.description = 'NSInvocationOperation are used under the hood in place of GCD (Grand Central Dispatch) since operations put in a NSOperationQueue object can be canceled. This threading fashion allows optimized long scrolling where a lot of cells are displayed and immediately reused/disappeared, without the obligation to execute the job of no more visible cells. ADBBackgroundCells are block-based and use Objective-C runtime.' | ||
s.homepage = 'https://github.com/albertodebortoli/ADBBackgroundCells' | ||
s.author = { 'Alberto De Bortoli' => 'albertodebortoli.website@gmail.com' } | ||
s.source = { :git => 'https://github.com/albertodebortoli/ADBBackgroundCells.git', :tag => '1.1.0' } | ||
s.license = { :type => 'New BSD License', :file => 'LICENSE.markdown' } | ||
s.source_files = 'ADBBackgroundCells/*.{h,m}' | ||
s.requires_arc = true | ||
end |