Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions SVPullToRefresh.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = 'SVPullToRefresh'
s.version = '0.2'
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.2' }

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.requires_arc = true
end