-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathJMCodingKit.podspec
More file actions
22 lines (21 loc) · 1.16 KB
/
JMCodingKit.podspec
File metadata and controls
22 lines (21 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "JMCodingKit"
spec.version = "6.0.0"
spec.summary = "JMCodingKit makes it easy to deal with JsonElement data in Swift"
spec.homepage = "https://github.com/JivoChat/JMCodingKit"
spec.license = { :type => "MIT" }
spec.authors = { "JivoChat" => "info@jivochat.com" }
spec.requires_arc = true
spec.swift_version = "5.0"
spec.osx.deployment_target = "10.10"
spec.ios.deployment_target = "12.0"
spec.source = { :git => "https://github.com/JivoChat/JMCodingKit.git", :tag => "v#{spec.version}" }
# s.source = { :git => "/Users/macbook/Documents/Xcode\ Projects/mobile-ios/Shared/Libraries/JMCodingKit", :tag => s.version }
spec.source_files = "OrderedMap/*.swift", "FlexibleWorkzone/*.swift", "FlexibleCoder/*.swift", "JsonCoder/*.swift"
# s.source_files = 'Products/**/*.*'
# s.public_header_files = "Products/JMCodingKit.framework/Headers/*.h"
# s.source_files = "Products/JMCodingKit.framework/Headers/*.h"
# s.vendored_frameworks = "Products/JMCodingKit.framework"
spec.exclude_files = ['Info.plist', "JMCodingKit/**/*.*", "Package.swift"]
# s.exclude_files = ['**/Info*.plist']
end