DZNEmptyDataSet.podspec 915 B

12345678910111213141516
  1. @version = "1.8"
  2. Pod::Spec.new do |s|
  3. s.name = "DZNEmptyDataSet"
  4. s.version = @version
  5. s.summary = "A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display."
  6. 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."
  7. s.homepage = "https://github.com/dzenbot/DZNEmptyDataSet"
  8. s.license = { :type => 'MIT', :file => 'LICENSE' }
  9. s.author = { "dzenbot" => "iromero@dzen.cl" }
  10. s.platform = :ios, '6.0'
  11. s.source = { :git => "https://github.com/dzenbot/DZNEmptyDataSet.git", :tag => "v#{s.version}" }
  12. s.source_files = 'Classes', 'Source/**/*.{h,m}'
  13. s.requires_arc = true
  14. s.framework = "UIKit"
  15. end