forked from andpor/react-native-sqlite-storage
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreact-native-sqlite-storage.podspec
More file actions
Latest commit
22 lines (17 loc) · 678 Bytes
/
Copy pathreact-native-sqlite-storage.podspec
File metadata and controls
22 lines (17 loc) · 678 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-sqlite-storage"
s.version=package['version']
s.summary=package['description']
s.homepage="https://github.com/andpor/react-native-sqlite-storage"
s.license=package['license']
s.author=package['author']
s.source={:git=>package['repository']['url'],:tag=>"v#{s.version}"}
s.ios.deployment_target='8.0'
s.osx.deployment_target='10.10'
s.preserve_paths='README.md','LICENSE','package.json','sqlite.js'
s.source_files="src/ios/*.{h,m}"
s.dependency'React'
s.library='sqlite3'
end