Skip to content

Commit

Permalink
ios: add podspec to enable use with CocoaPods
Browse files Browse the repository at this point in the history
PR-URL: #153
Reviewed-By: Jaime Bernardo <[email protected]>
  • Loading branch information
igor-makarov authored and jaimecbernardo committed Apr 21, 2020
1 parent dbaedc9 commit 7c94e29
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions NodeMobile.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Pod::Spec.new do |s|
s.name = 'NodeMobile'
s.version = '0.3.0'
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

0 comments on commit 7c94e29

Please sign in to comment.