- Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathReactNativeLocalization.podspec
More file actions
Latest commit
22 lines (17 loc) · 679 Bytes
/
Copy pathReactNativeLocalization.podspec
File metadata and controls
22 lines (17 loc) · 679 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="ReactNativeLocalization"
s.version=package['version']
s.summary=package['description']
s.homepage="https://github.com/stefalda/ReactNativeLocalization"
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.tvos.deployment_target='10.0'
s.osx.deployment_target='10.10'
s.preserve_paths='README.md','LICENSE','package.json','lib'
s.source_files="ios/*.{h,m}"
s.dependency'React-Core'
end