Skip to content

Instantly share code, notes, and snippets.

@AlehUlitsionak
Last active December 30, 2015 21:49
Show Gist options
  • Save AlehUlitsionak/7890309 to your computer and use it in GitHub Desktop.
Save AlehUlitsionak/7890309 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'SVPullToRefresh'
s.version = '0.4.1'
s.platform = :ios, '5.0'
s.license = 'MIT'
s.summary = 'Give pull-to-refresh to any UIScrollView with 1 line of code.'
s.homepage = 'https://github.com/samvermette/SVPullToRefresh'
s.author = { 'Sam Vermette' => 'hello@samvermette.com' }
s.source = { :git => 'https://github.com/ygweric/SVPullToRefresh.git', :commit => '1d40d1733f632e105dbcd3fb0b536f7454b572ab'}
s.description = 'SVPullToRefresh allows you to easily add pull-to-refresh ' \
'functionality to any UIScrollView subclass with only 1 ' \
'line of code. Instead of depending on delegates and/or ' \
'subclassing UIViewController, SVPullToRefresh extends ' \
'UIScrollView with a addPullToRefreshWithActionHandler: ' \
'method as well as a pullToRefreshView property.'
s.frameworks = 'QuartzCore'
s.source_files = 'SVPullToRefresh/*.{h,m}'
s.preserve_paths = 'Demo'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment