1 | require 'json'
|
2 |
|
3 | package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
4 |
|
5 | Pod::Spec.new do |s|
|
6 | s.name = 'EXLocalAuthentication'
|
7 | s.version = package['version']
|
8 | s.summary = package['description']
|
9 | s.description = package['description']
|
10 | s.license = package['license']
|
11 | s.author = package['author']
|
12 | s.homepage = package['homepage']
|
13 | s.platform = :ios, '10.0'
|
14 | s.source = { git: 'https://github.com/expo/expo.git' }
|
15 | s.source_files = 'EXLocalAuthentication/**/*.{h,m}'
|
16 | s.preserve_paths = 'EXLocalAuthentication/**/*.{h,m}'
|
17 | s.requires_arc = true
|
18 |
|
19 | s.dependency 'UMCore'
|
20 | s.dependency 'UMConstantsInterface'
|
21 | end
|