mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
19caaba1d5
Summary: * The dev support code moved into a `DevSupport` subspec, meaning that only if the subspec is specified in the user’s Podfile will the packager client, dev menu, etc be included. This is mainly done through checks for header availability. It also improves the weird situation where you had to specify the `RCTWebSocket` subspec if you wanted to be able to use the packager client during development. * I removed hardcoding the release version in the podspec on release, because the podspec still relies on `package.json` when evaluating, so there’s no real point in not also getting the version number from there. This should remove any requirement to perform maintenance of the OSS release script regarding the podspec. Closes https://github.com/facebook/react-native/pull/12602 Differential Revision: D4621021 Pulled By: ericvicenti fbshipit-source-id: 6c208371fc40ea607809a6ab05dd3714ed9980cf
154 lines
5.8 KiB
Ruby
154 lines
5.8 KiB
Ruby
require "json"
|
||
|
||
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
||
version = package['version']
|
||
|
||
source = { :git => 'https://github.com/facebook/react-native.git' }
|
||
if version == '1000.0.0'
|
||
# This is an unpublished version, use the latest commit hash of the react-native repo, which we’re presumably in.
|
||
source[:commit] = `git rev-parse HEAD`.strip
|
||
else
|
||
source[:tag] = "v#{version}"
|
||
end
|
||
|
||
Pod::Spec.new do |s|
|
||
s.name = "React"
|
||
s.version = version
|
||
s.summary = package["description"]
|
||
s.description = <<-DESC
|
||
React Native apps are built using the React JS
|
||
framework, and render directly to native UIKit
|
||
elements using a fully asynchronous architecture.
|
||
There is no browser and no HTML. We have picked what
|
||
we think is the best set of features from these and
|
||
other technologies to build what we hope to become
|
||
the best product development framework available,
|
||
with an emphasis on iteration speed, developer
|
||
delight, continuity of technology, and absolutely
|
||
beautiful and fast products with no compromises in
|
||
quality or capability.
|
||
DESC
|
||
s.homepage = "http://facebook.github.io/react-native/"
|
||
s.license = package["license"]
|
||
s.author = "Facebook"
|
||
s.source = source
|
||
s.default_subspec = "Core"
|
||
s.requires_arc = true
|
||
s.platform = :ios, "8.0"
|
||
s.pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" }
|
||
s.preserve_paths = "package.json", "LICENSE", "LICENSE-CustomComponents", "PATENTS"
|
||
s.cocoapods_version = ">= 1.2.0"
|
||
|
||
s.subspec "Core" do |ss|
|
||
ss.dependency "Yoga", "#{package["version"]}.React"
|
||
ss.dependency "React/cxxreact"
|
||
ss.source_files = "React/**/*.{c,h,m,mm,S}"
|
||
ss.exclude_files = "**/__tests__/*", "IntegrationTests/*", "React/DevSupport/*", "React/Modules/RCTDev{LoadingView,Menu}.*", "React/**/RCTTVView.*", "ReactCommon/yoga/*", "React/Cxx*/*"
|
||
ss.framework = "JavaScriptCore"
|
||
ss.libraries = "stdc++"
|
||
end
|
||
|
||
s.subspec "DevSupport" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.dependency "React/RCTWebSocket"
|
||
ss.source_files = "React/DevSupport/*", "React/Modules/RCTDev{LoadingView,Menu}.*"
|
||
end
|
||
|
||
s.subspec "tvOS" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "React/**/RCTTVView.{h, m}"
|
||
end
|
||
|
||
s.subspec "jschelpers" do |ss|
|
||
ss.source_files = "ReactCommon/jschelpers/{JavaScriptCore,JSCWrapper}.{cpp,h}"
|
||
ss.private_header_files = "ReactCommon/jschelpers/{JavaScriptCore,JSCWrapper}.h"
|
||
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/ReactCommon" }
|
||
ss.framework = "JavaScriptCore"
|
||
end
|
||
|
||
s.subspec "cxxreact" do |ss|
|
||
ss.dependency "React/jschelpers"
|
||
ss.source_files = "ReactCommon/cxxreact/{JSBundleType,oss-compat-util}.{cpp,h}"
|
||
ss.private_header_files = "ReactCommon/cxxreact/{JSBundleType,oss-compat-util}.h"
|
||
ss.pod_target_xcconfig = { "HEADER_SEARCH_PATHS" => "$(PODS_TARGET_SRCROOT)/ReactCommon" }
|
||
end
|
||
|
||
s.subspec "ART" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/ART/**/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTActionSheet" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/ActionSheetIOS/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTAdSupport" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/AdSupport/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTAnimation" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/NativeAnimation/{Drivers/*,Nodes/*,*}.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTCameraRoll" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.dependency "React/RCTImage"
|
||
ss.source_files = "Libraries/CameraRoll/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTGeolocation" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/Geolocation/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTImage" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.dependency "React/RCTNetwork"
|
||
ss.source_files = "Libraries/Image/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTNetwork" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/Network/*.{h,m,mm}"
|
||
end
|
||
|
||
s.subspec "RCTPushNotification" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/PushNotificationIOS/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTSettings" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/Settings/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTText" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/Text/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTVibration" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/Vibration/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTWebSocket" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/WebSocket/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTLinkingIOS" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/LinkingIOS/*.{h,m}"
|
||
end
|
||
|
||
s.subspec "RCTTest" do |ss|
|
||
ss.dependency "React/Core"
|
||
ss.source_files = "Libraries/RCTTest/**/*.{h,m}"
|
||
ss.frameworks = "XCTest"
|
||
end
|
||
end
|