forked from react-native-camera/react-native-camera
- Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathreact-native-camera.podspec
More file actions
Latest commit
22 lines (17 loc) · 698 Bytes
/
Copy pathreact-native-camera.podspec
File metadata and controls
22 lines (17 loc) · 698 Bytes
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.newdo |s|
s.name='react-native-camera'
s.version=package['version']
s.summary=package['description']
s.description=package['description']
s.license=package['license']
s.author=package['author']
s.homepage=package['homepage']
s.source={:git=>'https://github.com/lwansbrough/react-native-camera',:tag=>s.version}
s.requires_arc=true
s.platform=:ios,'8.0'
s.preserve_paths='LICENSE','README.md','package.json','index.js'
s.source_files='ios/*.{h,m}'
s.dependency'React'
end