forked from margelo/react-native-wishlist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMGWishList.podspec
More file actions
26 lines (21 loc) · 842 Bytes
/
MGWishList.podspec
File metadata and controls
26 lines (21 loc) · 842 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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "MGWishList"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
The fastest List component for React Native.
DESC
s.homepage = "https://github.com/margelo/react-native-wishlist"
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "author" => "author@domain.cn" }
s.platforms = { :ios => "13.4", :tvos => "13.4" }
s.source = { :git => "https://github.com/margelo/react-native-wishlist.git", :tag => "#{s.version}" }
s.source_files = [
"ios/**/*.{mm,h,m,cpp,hpp}",
"cpp/**/*.{cpp,h,m,mm,hpp}",
]
install_modules_dependencies(s)
end