DRCellSlideGestureRecognizer.podspec 777 B

12345678910111213141516
  1. Pod::Spec.new do |s|
  2. s.name = "DRCellSlideGestureRecognizer"
  3. s.version = "1.0.0"
  4. s.summary = "Make your cells actionable through swipes"
  5. s.homepage = "http://github.com/Dromaguirre/DRCellSlideGestureRecognizer"
  6. s.author = { "David Roman" => "dromaguirre@gmail.com" }
  7. s.license = { :type => 'MIT', :file => 'LICENSE' }
  8. s.platform = :ios, '8.0'
  9. s.ios.deployment_target = '8.0'
  10. s.source = { :git => "https://github.com/Dromaguirre/DRCellSlideGestureRecognizer.git", :tag => s.version.to_s }
  11. s.source_files = 'DRCellSlideGestureRecognizer/*.{h,m}'
  12. s.frameworks = 'Foundation', 'UIKit'
  13. s.requires_arc = true
  14. end