12 lines
587 B
Ruby
12 lines
587 B
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = "RMRPullToRefresh"
|
|
spec.version = "0.2"
|
|
spec.platform = :ios, "8.0"
|
|
spec.license = { :type => "MIT", :file => "LICENSE" }
|
|
spec.summary = "A pull to refresh control for UIScrollView (UITableView and UICollectionView)"
|
|
spec.homepage = "http://redmadrobot.com/"
|
|
spec.author = "Ilya Merkulov"
|
|
spec.source = { :git => :"https://git.redmadrobot.com/im/RMRPullToRefresh", :tag => "v0.2" }
|
|
spec.source_files = "Classes/*.{swift}", "Classes/Default/*.{swift}"
|
|
spec.resources = ['Images/*.png']
|
|
end |