-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathColaCup.podspec
executable file
·45 lines (27 loc) · 1.11 KB
/
ColaCup.podspec
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# pod lib lint --verbose --allow-warnings ColaCup.podspec
# pod trunk push --verbose --allow-warnings ColaCup.podspec
Pod::Spec.new do |s|
s.name = 'ColaCup'
s.version = '3.0.4'
s.summary = '🥤 A tool for viewing logs. Use with RaLog.'
s.description = '🥤 A tool for viewing logs. Use with RaLog.'
s.homepage = 'https://github.com/RakuyoKit/ColaCup'
s.license = 'MIT'
s.author = { 'Rakuyo' => '[email protected]' }
s.source = { :git => 'https://github.com/RakuyoKit/ColaCup.git', :tag => s.version.to_s }
s.requires_arc = true
s.platform = :ios, '10.0'
s.swift_version = '5.0'
s.static_framework = true
s.module_name = 'ColaCup'
s.source_files = 'ColaCup/Core/*/*', # Global,ColaCup,Filter,Details
'ColaCup/Core/*/*/*' # Filter/Model
s.resource_bundle = {
'ColaCupBundle' => [
'ColaCup/Other/*.xcassets',
'ColaCup/Other/*/*.strings'
]
}
s.dependency 'RaLog'
s.dependency 'JSONPreview'
end