12345678910111213141516 |
- @version = "1.8"
- 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.platform = :ios, '6.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
|