-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathJavaScriptKit.podspec
27 lines (21 loc) · 1.11 KB
/
JavaScriptKit.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
Pod::Spec.new do |s|
s.name = "JavaScriptKit"
s.version = "2.0.1"
s.summary = "JavaScriptCore replacement for WKWebView"
s.description =
<<-DESC
JavaScriptKit is a powerful replacement for JavaScriptCore to use with your WebKit web views. Generate and evaluate type-safe JavaScript expressions in WKWebView. Automatically encode and decode values, JSON objects and enumerations to and from JavaScript. Easily handle errors.
DESC
s.homepage = "https://github.com/alexaubry/JavaScriptKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Alexis Aubry" => "[email protected]" }
s.social_media_url = "http://twitter.com/_alexaubry"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.source = { :git => "https://github.com/alexaubry/JavaScriptKit.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.resource_bundles = { "JavaScriptKit" => ["Locales/**/*.lproj"] }
s.frameworks = "Foundation", "WebKit"
s.swift_version = "4.2"
s.documentation_url = "https://alexaubry.github.io/JavaScriptKit"
end