UNPKG

607 BPlain TextView Raw
1require 'json'
2
3package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
4
5Pod::Spec.new do |s|
6 s.name = 'EXCore'
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, "9.0"
14 s.source = { :git => "https://github.com/expo/expo.git" }
15 s.source_files = 'EXCore/**/*.{h,m}'
16 s.preserve_paths = 'EXCore/**/*.{h,m}'
17 s.requires_arc = true
18
19end
20
21
\No newline at end of file