forked from Shopify/flash-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNFlashList.podspec
More file actions
26 lines (22 loc) · 780 Bytes
/
RNFlashList.podspec
File metadata and controls
26 lines (22 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'RNFlashList'
s.version = package['version']
s.summary = package['description']
s.homepage = package['homepage']
s.license = package['license']
s.author = package['author']
s.platform = :ios, '11.0'
s.source = { git: 'https://github.com/shopify/flash-list.git', tag: 'v#{s.version}' }
s.source_files = 'ios/Sources/**/*'
s.requires_arc = true
s.swift_version = '5.0'
# Dependencies
s.dependency 'React-Core'
# Tests spec
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'ios/Tests/**/*'
test_spec.framework = 'XCTest'
end
end