forked from JaneaSystems/nodejs-mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
NodeMobile.podspec
27 lines (19 loc) · 905 Bytes
/
NodeMobile.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 = 'NodeMobile'
s.version = '0.1.8'
s.summary = 'Node.js for Mobile Apps'
s.description = <<-DESC.strip_heredoc
[Node.js for Mobile Apps](https://code.janeasystems.com/nodejs-mobile) - A toolkit for integrating Node.js into mobile applications.
DESC
s.homepage = 'https://code.janeasystems.com/nodejs-mobile'
s.license = { type: 'Mixed', file: 'LICENSE' }
s.documentation_url = 'https://code.janeasystems.com/nodejs-mobile/getting-started-ios'
s.author = 'Janea Systems'
s.ios.deployment_target = '9.0'
s.source = { git: 'https://github.com/janeasystems/nodejs-mobile.git',
tag: "nodejs-mobile-v#{s.version}" }
s.vendored_frameworks = 'out_ios/Release-universal/NodeMobile.framework'
s.prepare_command = <<-CMD.strip_heredoc
tools/ios_framework_prepare.sh
CMD
end