Skip to content

Commit 9e38142

Browse files
committed
[Update] MMMLog (1.4.1)
1 parent 2e5f436 commit 9e38142

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

MMMLog/1.4.1/MMMLog.podspec

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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

0 commit comments

Comments
 (0)