forked from onmyway133/DeepDiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DeepDiff.podspec
28 lines (24 loc) · 936 Bytes
/
DeepDiff.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
Pod::Spec.new do |s|
s.name = "DeepDiff"
s.summary = "Amazingly incredible extraordinary lightning fast diffing in Swift"
s.version = "2.2.0"
s.homepage = "https://github.com/onmyway133/DeepDiff"
s.license = 'MIT'
s.author = { "Khoa Pham" => "[email protected]" }
s.source = {
:git => "https://github.com/onmyway133/DeepDiff.git",
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/onmyway133'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.2'
s.watchos.deployment_target = "3.0"
s.requires_arc = true
s.ios.source_files = 'Sources/{iOS,Shared}/**/*'
s.osx.source_files = 'Sources/{Shared}/**/*'
s.tvos.source_files = 'Sources/{iOS,Shared}/**/*'
s.watchos.source_files = 'Sources/Shared/**/*'
s.ios.framework = "UIKit"
s.swift_version = '5.0'
end