-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNWescan.podspec
More file actions
21 lines (17 loc) · 646 Bytes
/
RNWescan.podspec
File metadata and controls
21 lines (17 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "RNWescan"
s.version = package["version"]
s.summary = package["title"]
s.description = package["description"]
s.homepage = package["homepage"]
# s.license = "MIT"
s.license = { :type => package["license"], :file => package["licenseFilename"] }
s.author = package["author"]
s.platform = :ios, "11.0"
s.source = { :git => package["repository"]["url"], :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true
s.dependency "React"
end