forked from aksonov/react-native-xmpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RNXMPP.podspec
22 lines (18 loc) · 909 Bytes
/
RNXMPP.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RNXMPP'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/hippware/react-native-xmpp.git', :tag => s.version }
s.requires_arc = true
s.platform = :ios, '8.0'
s.dependency 'React'
s.dependency 'XMPPFramework'
s.preserve_paths = 'package.json', 'index.js'
s.source_files = 'RNXMPP/XMPPFramework.h', 'RNXMPP/RNXMPPService.m', 'RNXMPP/RNXMPPService.h', 'RNXMPP/RNXMPPConstants.h', 'RNXMPP/RNXMPPConstants.m', 'RNXMPP/RNXMPP.h', 'RNXMPP/RNXMPP.m'
end