forked from samvermette/SVPullToRefresh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SVPullToRefresh.podspec
25 lines (23 loc) · 1.14 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
23
24
25
Pod::Spec.new do |s|
s.name = 'SVPullToRefresh'
s.version = '0.4.2'
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/captain-black/SVPullToRefresh'
s.author = { 'Sam Vermette' => '[email protected]',
'Captain Black' => '[email protected]'
}
s.source = { :git => 'https://github.com/captain-black/SVPullToRefresh.git', :tag => s.version.to_s }
s.description =
'Fork and fix bugs base on 0.4.1 ' \
'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.requires_arc = true
end