-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mason.podspec
28 lines (18 loc) · 902 Bytes
/
Mason.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 |spec|
spec.name = "Mason"
spec.version = "2.2.0"
spec.summary = "A simple JSON handle wrapper in Swift, making it available to handle JSON like JavaScript."
spec.homepage = "https://github.com/Monsoir/Mason"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Monsoir" => "[email protected]" }
spec.social_media_url = "https://github.com/Monsoir"
spec.swift_version = "5.0"
# When using multiple platforms
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.watchos.deployment_target = "3.0"
spec.tvos.deployment_target = "10.0"
spec.source = { :git => "https://github.com/Monsoir/Mason.git", :branch => "main", :tag => "#{spec.version}" }
spec.source_files = ["Sources/Mason/Mason.h", "Sources/Mason/**/*.swift"]
spec.requires_arc = true
end