forked from JaneaSystems/nodejs-mobile-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNNodeJsMobile.podspec
More file actions
25 lines (23 loc) · 948 Bytes
/
RNNodeJsMobile.podspec
File metadata and controls
25 lines (23 loc) · 948 Bytes
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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RNNodeJsMobile'
s.version = package['version'].sub('-beta', '')
s.license = { :type => 'MIT' }
s.homepage = package['homepage']
s.authors = package['author']
s.summary = package['description']
s.source = { :git => 'https://github.com/jgtoriginal/RNNodeJsMobile.git', :tag => 'master' }
s.source_files = [
'ios/*.{h,m,mm,hpp,cpp}',
'ios/NodeMobile.framework/Headers/*.{h}',
'ios/libnode/include/node/*.{h}',
'ios/libnode/include/node/**/*.{h}',
'ios/libRNNodeJsMobile.a'
]
s.platform = :ios, '8.0'
s.static_framework = true
s.cocoapods_version = ">= 1.2.0"
s.dependency 'AFNetworking', '~> 3.2.1'
s.dependency 'React'
end