MGSwipeTableCell.podspec 585 B

12345678910111213
  1. Pod::Spec.new do |s|
  2. s.name = 'MGSwipeTableCell'
  3. s.version = '1.6.8'
  4. s.author = { 'Imanol Fernandez' => 'mortimergoro@gmail.com' }
  5. s.homepage = 'https://github.com/MortimerGoro/MGSwipeTableCell'
  6. s.summary = 'An easy to use UITableViewCell subclass that allows to display swipeable buttons with a variety of transitions'
  7. s.license = 'MIT'
  8. s.source = { :git => 'https://github.com/MortimerGoro/MGSwipeTableCell.git', :tag => s.version.to_s }
  9. s.source_files = 'MGSwipeTableCell'
  10. s.platform = :ios
  11. s.ios.deployment_target = '7.0'
  12. s.requires_arc = true
  13. end