-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftHotReload.podspec
25 lines (24 loc) · 990 Bytes
/
SwiftHotReload.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
Pod::Spec.new do |spec|
spec.name = "SwiftHotReload"
spec.version = "0.2.1"
spec.summary = "Hot Reload on Swift"
spec.description = <<-DESC
Hot reload on swift app using at _dynamicReplacement
DESC
spec.homepage = "https://github.com/banjun/SwiftHotReload"
spec.license = "MIT"
spec.author = { "banjun" => "[email protected]" }
spec.ios.deployment_target = "14.0"
spec.osx.deployment_target = "11.0"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.visionos.deployment_target = "1.0"
spec.source = { :git => "https://github.com/banjun/SwiftHotReload.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/**/*.swift"
spec.swift_version = "6.0"
spec.ios.deployment_target = "16.0"
spec.osx.deployment_target = "13.0"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.visionos.deployment_target = "1.0"
end