forked from ShawnFoo/SwiftWebViewBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftWebViewBridge.podspec
More file actions
20 lines (20 loc) · 843 Bytes
/
SwiftWebViewBridge.podspec
File metadata and controls
20 lines (20 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.platform = :ios
s.ios.deployment_target = '8.0'
s.name = "SwiftWebViewBridge"
s.summary = "A bridge to send messages between Swift and JS in UIWebViews"
s.description = <<-DESC
Swift version of WebViewJavascriptBridge with more simplified, friendly methods to send messages between Swift and JS in UIWebViews
DESC
s.version = "0.3.0"
s.license = "MIT"
s.author = { "Shawn Foo" => "fu4904@gmail.com" }
s.homepage = "https://github.com/ShawnFoo/SwiftWebViewBridge"
s.source = { :git => "https://github.com/ShawnFoo/SwiftWebViewBridge.git", :tag => s.version }
s.frameworks = "UIKit"
s.source_files = "SwiftWebViewBridge/*.{swift}"
s.requires_arc = true
s.pod_target_xcconfig = {
'SWIFT_VERSION' => '3.0',
}
end