-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathECMASwift.podspec
More file actions
22 lines (19 loc) · 934 Bytes
/
Copy pathECMASwift.podspec
File metadata and controls
22 lines (19 loc) · 934 Bytes
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 = "ECMASwift"
spec.version = "1.3.0"
spec.summary = "ECMAScript strong typing helpers for Swift"
spec.description = <<-DESC
Swift/JS helpers to get/set variables, run methods, send
notifications on a WKWebview. Utilized PromiseKit to convert
WKWebView completion handlers into chainable promises.
DESC
spec.homepage = "https://github.com/hiimtmac/ECMASwift"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "hiimtmac" => "taylor@hiimtmac.com" }
spec.platform = :ios, "13.0"
spec.source = { :git => "https://github.com/hiimtmac/ECMASwift.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/ECMASwift/**/*.swift"
spec.requires_arc = true
spec.swift_version = "5.4"
spec.framework = "WebKit"
end