MBProgressHUD.podspec 983 B

1234567891011121314151617181920
  1. Pod::Spec.new do |s|
  2. s.name = "MBProgressHUD"
  3. s.version = "1.1.0"
  4. s.summary = "An iOS activity indicator view."
  5. s.description = <<-DESC
  6. MBProgressHUD is an iOS drop-in class that displays a translucent HUD
  7. with an indicator and/or labels while work is being done in a background thread.
  8. The HUD is meant as a replacement for the undocumented, private UIKit UIProgressHUD
  9. with some additional features.
  10. DESC
  11. s.homepage = "http://www.bukovinski.com"
  12. s.license = { :type => 'MIT', :file => 'LICENSE' }
  13. s.author = { 'Matej Bukovinski' => 'matej@bukovinski.com' }
  14. s.source = { :git => "https://github.com/matej/MBProgressHUD.git", :tag => s.version.to_s }
  15. s.ios.deployment_target = '8.0'
  16. s.tvos.deployment_target = '9.0'
  17. s.source_files = '*.{h,m}'
  18. s.frameworks = "CoreGraphics", "QuartzCore"
  19. s.requires_arc = true
  20. end