-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXCECollectionData.podspec
More file actions
30 lines (21 loc) · 1.01 KB
/
XCECollectionData.podspec
File metadata and controls
30 lines (21 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
projName = 'CollectionData'
projSummary = 'Convenience implementation of DataSource object for UITableView and UICollectionView.'
companyPrefix = 'XCE'
companyName = 'XCEssentials'
companyGitHubAccount = 'https://github.com/' + companyName
companyGitHubPage = 'https://' + companyName + '.github.io'
#===
Pod::Spec.new do |s|
s.name = companyPrefix + projName
s.summary = projSummary
s.version = '1.1.2'
s.homepage = companyGitHubPage + '/' + projName
s.source = { :git => companyGitHubAccount + '/' + projName + '.git', :tag => s.version }
s.source_files = 'Sources/**/*.swift'
s.ios.deployment_target = '8.0'
s.requires_arc = true
s.framework = 'UIKit'
s.dependency 'Dwifft', '~> 0.6'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maxim Khatskevich' => 'maxim@khatskevi.ch' }
end