-
Notifications
You must be signed in to change notification settings - Fork 1
/
Bionic-js.podspec
32 lines (28 loc) · 1.18 KB
/
Bionic-js.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
29
30
31
32
Pod::Spec.new do |spec|
spec.name = "Bionic-js"
spec.version = "0.1.0"
spec.summary = "Run effectively JS code in Swift and ObjectiveC projects"
spec.description = <<-DESC
Bionic.js let you share the business logic between different native languages without using any framework and without writing a single line of bridging code.
1. write code once in JavaScript (ECMAScript 6)
2. annotate classes to be exported
3. use JS classes from native Swift and ObjectiveC code, as if they were native classes
DESC
spec.homepage = "https://github.com/Forge-Srl/bionic-js-runtime-swift"
spec.license = { :type => "MIT", :file => "LICENSE.md" }
spec.authors = {
"Marco Vanetti" => "marco.vanetti@gmail.com",
"Tommaso Bossi" => "tommaso.bossi@forge.srl"
}
spec.source = {
:git => "https://github.com/Forge-Srl/bionic-js-runtime-swift.git",
:tag => "release/#{spec.version}"
}
spec.module_name = "Bjs"
spec.source_files = "Bjs"
spec.swift_version = "4.2"
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.15"
spec.framework = "JavaScriptCore"
spec.ios.framework = 'UIKit'
end