File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # MMMLog.
3
+ # Copyright (C) 2020 MediaMonks. All rights reserved.
4
+ #
5
+
6
+ Pod ::Spec . new do |s |
7
+
8
+ s . name = "MMMLog"
9
+ s . version = "1.4.1"
10
+ s . description = s . summary = "Practical simple logging."
11
+ s . homepage = "https://github.com/mediamonks/MMMLog"
12
+ s . license = "MIT"
13
+ s . authors = "MediaMonks"
14
+ s . source = { :git => "https://github.com/mediamonks/MMMLog.git" , :tag => s . version . to_s }
15
+
16
+ s . ios . deployment_target = '11.0'
17
+ s . watchos . deployment_target = '2.0'
18
+ s . tvos . deployment_target = '9.0'
19
+ s . osx . deployment_target = '10.10'
20
+
21
+ s . swift_versions = '4.2'
22
+ s . static_framework = true
23
+ s . pod_target_xcconfig = {
24
+ "DEFINES_MODULE" => "YES"
25
+ }
26
+
27
+ s . subspec 'ObjC' do |ss |
28
+ ss . source_files = 'Sources/MMMLogObjC/**/*'
29
+ end
30
+
31
+ s . subspec 'Swift' do |ss |
32
+ ss . source_files = 'Sources/MMMLog/**/*'
33
+ ss . dependency 'MMMLog/ObjC'
34
+ end
35
+
36
+ s . default_subspec = 'ObjC' , 'Swift'
37
+ end
You can’t perform that action at this time.
0 commit comments