forked from LawrenceHan/SVPullToRefresh
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SVPullToRefresh.podspec
22 lines (20 loc) · 1 KB
/
SVPullToRefresh.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'SVPullToRefresh'
s.version = '0.4.5'
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' => '[email protected]' }
s.source = { :git => 'https://github.com/samvermette/SVPullToRefresh.git', :tag => s.version.to_s }
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