EARestrictedScrollView.podspec 868 B

123456789101112131415161718
  1. Pod::Spec.new do |s|
  2. s.name = 'EARestrictedScrollView'
  3. s.version = '1.1.0'
  4. s.summary = 'UIScrollView sublass with ability to restrict or limit scrolling area.'
  5. s.screenshot = 'https://raw.githubusercontent.com/ealeksandrov/EARestrictedScrollView/master/Screenshot01.png'
  6. s.homepage = 'https://github.com/ealeksandrov/EARestrictedScrollView'
  7. s.license = { :type => 'MIT', :file => 'LICENSE' }
  8. s.author = { 'Evgeny Aleksandrov' => 'evgeny@aleksandrov.ws' }
  9. s.social_media_url = 'https://twitter.com/ealeksandrov'
  10. s.platform = :ios, '5.0'
  11. s.source = { :git => 'https://github.com/ealeksandrov/EARestrictedScrollView.git', :tag => s.version.to_s }
  12. s.source_files = 'EARestrictedScrollView/EARestrictedScrollView.{h,m}'
  13. s.requires_arc = true
  14. s.public_header_files = 'EARestrictedScrollView/*.h'
  15. end