forked from react-native-art/art
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactNativeART.podspec
More file actions
24 lines (19 loc) · 846 Bytes
/
ReactNativeART.podspec
File metadata and controls
24 lines (19 loc) · 846 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
# coding: utf-8
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "ReactNativeART"
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.authors = package['author']
s.homepage = package['homepage']
s.platforms = { :ios => "9.0", :tvos => "9.2" }
s.source = { :git => "https://github.com/react-native-community/art.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.dependency "React"
end