-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRNNearbee.podspec
29 lines (24 loc) · 1.03 KB
/
RNNearbee.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
28
29
require 'json'
# Returns the version number for a package.json file
package = JSON.parse(File.read('./package.json'))
Pod::Spec.new do |s|
s.name = 'RNNearBee'
s.version = package["version"]
s.description = 'A wrapper for NearBee.'
s.summary = 'Components for RNNearBee.'
s.homepage = 'https://github.com/Beaconstac/react-native-nearbee'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Beaconstac' => '[email protected]' }
s.source = { :git => 'https://github.com/Beaconstac/react-native-nearbee', :tag => s.version }
s.source_files = "ios/*.{h,m}"
s.platform = :ios, '10.0'
# React is split into a set of subspecs, these are the essentials
s.dependency 'React-Core'
s.dependency 'React-cxxreact'
s.dependency 'React-RCTAnimation'
s.dependency 'React-RCTImage'
s.dependency 'React-RCTLinking'
s.dependency 'React-RCTNetwork'
s.dependency 'React-RCTText'
s.dependency 'NearBee', '~>0.4.6'
end