forked from xmartlabs/XLDataLoader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXLDataLoader.podspec
More file actions
17 lines (17 loc) · 845 Bytes
/
XLDataLoader.podspec
File metadata and controls
17 lines (17 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'XLDataLoader'
s.version = '1.0.1'
s.license = 'MIT'
s.summary = 'Flexible and powerful AFNetworking data loaders.'
s.description = <<-DESC
Flexible solution for load async data using AFNetworking, cahing them on CoreData db and update either UITableView or UICollectionView based on core data updates.
DESC
s.homepage = 'https://github.com/xmartlabs/XLDataLoader'
s.authors = { 'Martin Barreto' => 'martin@xmartlabs.com', 'Miguel Revetria' => 'miguel@xmartlabs.com' }
s.source = { :git => 'https://github.com/mmcgary/XLDataLoader.git', :tag => 'v1.0.1'}
s.source_files = 'XLDataLoader/XL/**/*.{h,m}'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.3.3'
s.ios.deployment_target = '6.0'
s.ios.frameworks = 'UIKit', 'Foundation'
end