forked from dzenbot/DZNEmptyDataSet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDZNEmptyDataSet.podspec
16 lines (15 loc) · 946 Bytes
/
DZNEmptyDataSet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
@version = "2.0.0beta"
Pod::Spec.new do |s|
s.name = "DZNEmptyDataSet"
s.version = @version
s.summary = "A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display."
s.description = "It will work automatically, by just conforming to DZNEmptyDataSetSource, and returning the data you want to show. The -reloadData call will be observed so the empty dataset will be configured whenever needed."
s.homepage = "https://github.com/KenziTrader/DZNEmptyDataSet"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "dzenbot" => "[email protected]" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/KenziTrader/DZNEmptyDataSet.git", :tag => "v#{s.version}" }
s.source_files = 'Classes', 'Source/Swift/DZNEmptyDataSet.swift'
s.requires_arc = true
s.framework = "UIKit"
end