See More

Pod::Spec.new do |s| s.name = "PagedArray" s.version = "0.5" s.summary = "A Swift data structure for easier pagination" s.description = <<-DESC PagedArray is a generic Swift data structure for helping you implement paging mechanisms in (but not limited to) UITableViews, UICollectionViews and UIPageViewControllers. DESC s.homepage = "https://github.com/MrAlek/PagedArray" s.license = 'MIT' s.author = { "Alek AÌŠström" => "[email protected]" } s.source = { :git => "https://github.com/MrAlek/PagedArray.git", :tag => s.version.to_s } s.social_media_url = 'https://twitter.com/MisterAlek' s.ios.deployment_target = '8.0' s.osx.deployment_target = '10.9' s.watchos.deployment_target = '2.0' s.tvos.deployment_target = '9.0' s.requires_arc = true s.source_files = 'Source/*.swift' s.frameworks = 'Foundation' end