-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXCEReusableView.podspec
More file actions
28 lines (20 loc) · 978 Bytes
/
XCEReusableView.podspec
File metadata and controls
28 lines (20 loc) · 978 Bytes
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
projName = 'ReusableView'
projSummary = 'Set of helpers for reusable views implementation for UICollectionView and UITableView.'
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.1'
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.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maxim Khatskevich' => 'maxim@khatskevi.ch' }
end