Skip to content

Commit

Permalink
Add SVPullToRefresh.podspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
lexrus committed Apr 24, 2012
1 parent bb8897c commit b3cb207
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions SVPullToRefresh/0.1/SVPullToRefresh.podspec
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'SVPullToRefresh'
s.version = '0.1'
s.platform = :ios
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/samvermette/SVPullToRefresh.git',
:tag => '0.1' }

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.clean_paths = 'Demo'
s.resources = 'SVPullToRefresh/SVPullToRefresh.bundle'
end

0 comments on commit b3cb207

Please sign in to comment.