forked from kishikawakatsumi/JavaScriptBridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaScriptBridge.podspec
More file actions
18 lines (15 loc) · 853 Bytes
/
JavaScriptBridge.podspec
File metadata and controls
18 lines (15 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "JavaScriptBridge"
s.version = "0.0.1"
s.summary = "Write iOS apps in Javascript! JavaScriptBridge provides the way to write iOS apps with JavaScript."
s.homepage = "https://github.com/kishikawakatsumi/JavaScriptBridge"
s.license = 'MIT'
s.author = { "kishikawa katsumi" => "kishikawakatsumi@mac.com" }
s.source = { :git => "https://github.com/kishikawakatsumi/JavaScriptBridge.git", :tag => "v#{s.version.to_s}" }
s.platform = :ios, '7.0'
s.ios.deployment_target = '7.0'
s.requires_arc = true
s.source_files = 'Classes/**/*'
s.private_header_files = ['Classes/Private/*.h', 'Classes/**/FrameworkSupport/**/*.h']
s.frameworks = 'JavaScriptCore'
end