-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMMMArrayChanges.podspec
41 lines (33 loc) · 1.05 KB
/
MMMArrayChanges.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
#
# MMMArrayChanges. Part of MMMTemple.
# Copyright (C) 2019 MediaMonks. All rights reserved.
#
Pod::Spec.new do |s|
s.name = "MMMArrayChanges"
s.version = "2.1.0"
s.summary = "Helps finding (UITableView-compatible) differences between two arrays possibly of different types"
s.description = s.summary
s.homepage = "https://github.com/mediamonks/MMMArrayChanges"
s.license = "MIT"
s.authors = "MediaMonks"
s.source = { :git => "https://github.com/mediamonks/MMMArrayChanges.git", :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.subspec 'ObjC' do |ss|
ss.source_files = [ "Sources/#{s.name}ObjC/*.{h,m}" ]
end
s.swift_versions = '4.2'
s.static_framework = true
s.pod_target_xcconfig = {
"DEFINES_MODULE" => "YES"
}
s.subspec 'Swift' do |ss|
ss.source_files = [ "Sources/#{s.name}/*.swift" ]
end
s.test_spec 'TestsSwift' do |test_spec|
test_spec.source_files = 'Tests/**/*.swift'
end
s.default_subspec = 'ObjC', 'Swift'
end