Skip to content

Instantly share code, notes, and snippets.

@zwaldowski
Created April 19, 2012 15:05
Show Gist options
  • Save zwaldowski/2421524 to your computer and use it in GitHub Desktop.
Save zwaldowski/2421524 to your computer and use it in GitHub Desktop.
SSPullToRefresh CocoaPod
Pod::Spec.new do |s|
s.name = 'SSPullToRefresh'
s.version = '1.0'
s.license = 'MIT'
s.summary = 'There are lots of pull to refresh views, this one is Sam\'s.'
s.homepage = 'https://github.com/samsoffes/sspulltorefresh'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/sspulltorefresh.git', :commit => 'origin/master' }
s.source_files = 'SSPullToRefresh.h', 'SSPullToRefreshView.{h,m}', 'SSSimplePullToRefreshContentView.{h,m}'
s.requires_arc = true
s.description = 'There are dozens of pull to refresh views. I\'ve never found one I\'m happy with.' \
'I always end up customizing one. This is the one I use that\'s highly customizable.' \
'You can just write your view code and not worry about the actual pull to refresh part.'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment