Last active
December 30, 2015 21:49
-
-
Save AlehUlitsionak/7890309 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'SVPullToRefresh' | |
s.version = '0.4.1' | |
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/ygweric/SVPullToRefresh.git', :commit => '1d40d1733f632e105dbcd3fb0b536f7454b572ab'} | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment