forked from agustinths/ReactNativeLocalization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactNativeLocalization.podspec
More file actions
21 lines (16 loc) · 643 Bytes
/
ReactNativeLocalization.podspec
File metadata and controls
21 lines (16 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |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.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