forked from PeelTechnologies/react-native-os
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNOS.podspec
More file actions
Latest commit
20 lines (18 loc) · 709 Bytes
/
Copy pathRNOS.podspec
File metadata and controls
20 lines (18 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require'json'
package=JSON.parse(File.read('package.json'))
Pod::Spec.newdo |s|
s.name='RNOS'
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/aprock/react-native-os.git'}
s.platform=:ios,'9.0'
s.ios.deployment_target='9.0'
s.source_files='ios/**/*.{h,m}'
s.exclude_files='android/**/*'
s.exclude_files='example/**/*'
s.dependency'React'
end