forked from stefalda/ReactNativeLocalization
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactNativeLocalization.podspec
More file actions
Latest commit
23 lines (18 loc) · 839 Bytes
/
Copy pathReactNativeLocalization.podspec
File metadata and controls
23 lines (18 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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.description=package['description']
s.homepage=package['homepage']
s.license=package['license']
s.author=package['author']
s.source={:git=>'https://github.com/stefalda/ReactNativeLocalization.git',:tag=>'v'+s.version.to_s}
s.platform=:ios,'9.0'
s.ios.deployment_target='8.0'
s.dependency'React'
s.preserve_paths='CHANGELOG.md','LICENSE','package.json'
s.source_files='**/*.{h,m}','lib/LocalizedStrings.js'
s.exclude_files='android/**/*'
end