- Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathAWPagedArray.podspec
More file actions
Latest commit
17 lines (17 loc) · 795 Bytes
/
Copy pathAWPagedArray.podspec
File metadata and controls
17 lines (17 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.newdo |s|
s.name='AWPagedArray'
s.version='0.3.0'
s.summary='An Objective-C proxy class for creating paged arrays'
s.description=<<-DESC
AWPagedArray is an Objective-C class which acts as an NSArray proxy
for easier paging mechanisms in UITableView's and UICollectionView's.
DESC
s.homepage='https://github.com/MrAlek/AWPagedArray'
s.author={'Alek Åström'=>'hi@mralek.se'}
s.license={:type=>'MIT',:file=>'LICENSE'}
s.source={:git=>"https://github.com/MrAlek/AWPagedArray.git",:tag=>s.version.to_s}
s.source_files='*.{h,m}'
s.requires_arc=true
s.ios.deployment_target="6.0"
s.osx.deployment_target="10.8"
end