forked from dzenbot/DZNEmptyDataSet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DZNEmptyDataSet.podspec
17 lines (16 loc) · 957 Bytes
/
DZNEmptyDataSet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@version = "1.8.1"
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/dzenbot/DZNEmptyDataSet"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "dzenbot" => "iromero@dzen.cl" }
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/dzenbot/DZNEmptyDataSet.git", :tag => "v#{s.version}" }
s.source_files = 'Classes', 'Source/**/*.{h,m}'
s.requires_arc = true
s.framework = "UIKit"
end