-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXCEAssociatedStorage.podspec
More file actions
30 lines (21 loc) · 1.05 KB
/
XCEAssociatedStorage.podspec
File metadata and controls
30 lines (21 loc) · 1.05 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 = 'AssociatedStorage'
projSummary = 'Key-value storage where value object will be automatically released when key object is deallocated.'
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.0.0'
s.homepage = companyGitHubAccount + '/' + projName
s.documentation_url = 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.dependency 'AAA', '~> X.Y.Z'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Maxim Khatskevich' => 'maxim@khatskevi.ch' }
end