This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

24 lines
646 B
Plaintext
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
require 'json'
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
Pod::Spec.new do |s|
s.name = 'EXKeepAwake'
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.platform = :ios, '10.0'
s.source = { git: 'https://github.com/expo/expo.git' }
s.source_files = 'EXKeepAwake/**/*.{h,m}'
s.preserve_paths = 'EXKeepAwake/**/*.{h,m}'
s.requires_arc = true
s.dependency 'UMCore'
end