From 35aa18a84e8f6fdfde59b87fdc9343d6047aefb7 Mon Sep 17 00:00:00 2001 From: Alexsander Akers Date: Thu, 26 Mar 2015 18:25:35 +0000 Subject: [PATCH] Fix CocoaPods spec --- React.podspec | 105 ++++++++++++++++++++++++++++---------------------- 1 file changed, 60 insertions(+), 45 deletions(-) diff --git a/React.podspec b/React.podspec index 4ad740e4ad..f1d4df7aa5 100644 --- a/React.podspec +++ b/React.podspec @@ -1,78 +1,93 @@ Pod::Spec.new do |s| - s.name = "React" - s.version = "0.1.0" - s.summary = "Build high quality mobile apps using React." - 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 = "BSD" - s.author = "Facebook" - s.platform = :ios, "7.0" - s.source = { :git => "https://github.com/facebook/react-native.git", :tag => "v#{s.version}" } - s.source_files = "React/**/*.{c,h,m}" - s.resources = "Resources/*.png" - s.preserve_paths = "cli.js", "Libraries/**/*.js", "lint", "linter.js", "node_modules", "package.json", "packager", "PATENTS", "react-native-cli" - s.exclude_files = "**/__tests__/*", "IntegrationTests/*" - s.frameworks = "JavaScriptCore" - s.requires_arc = true - s.prepare_command = 'npm install' - s.libraries = 'icucore' + s.name = "React" + s.version = "0.1.0" + s.summary = "Build high quality mobile apps using React." + 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 = "BSD" + s.author = "Facebook" + s.source = { :git => "https://github.com/facebook/react-native.git", :tag => "v#{s.version}" } + s.default_subspec = 'Core' + s.requires_arc = true + s.platform = :ios, "7.0" + s.prepare_command = 'npm install' + s.preserve_paths = "cli.js", "Libraries/**/*.js", "lint", "linter.js", "node_modules", "package.json", "packager", "PATENTS", "react-native-cli" + + s.subspec 'Core' do |ss| + ss.libraries = 'icucore' + ss.source_files = "React/**/*.{c,h,m}" + ss.exclude_files = "**/__tests__/*", "IntegrationTests/*" + ss.frameworks = "JavaScriptCore" + end s.subspec 'RCTActionSheet' do |ss| - ss.source_files = "Libraries/ActionSheetIOS/*.{h,m}" + ss.dependency 'React/Core' + ss.source_files = "Libraries/ActionSheetIOS/*.{h,m}" ss.preserve_paths = "Libraries/ActionSheetIOS/*.js" end s.subspec 'RCTAdSupport' do |ss| - ss.source_files = "Libraries/RCTAdSupport/*.{h,m}" - ss.preserve_paths = "Libraries/RCTAdSupport/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/AdSupport/*.{h,m}" + ss.preserve_paths = "Libraries/AdSupport/*.js" end s.subspec 'RCTAnimation' do |ss| - ss.source_files = "Libraries/Animation/*.{h,m}" - ss.preserve_paths = "Libraries/Animation/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Animation/*.{h,m}" + ss.preserve_paths = "Libraries/Animation/*.js" end s.subspec 'RCTGeolocation' do |ss| - ss.source_files = "Libraries/Geolocation/*.{h,m}" - ss.preserve_paths = "Libraries/Geolocation/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Geolocation/*.{h,m}" + ss.preserve_paths = "Libraries/Geolocation/*.js" end s.subspec 'RCTImage' do |ss| - ss.source_files = "Libraries/Image/*.{h,m}" - ss.preserve_paths = "Libraries/Image/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Image/*.{h,m}" + ss.preserve_paths = "Libraries/Image/*.js" end s.subspec 'RCTNetwork' do |ss| - ss.source_files = "Libraries/Network/*.{h,m}" - ss.preserve_paths = "Libraries/Network/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Network/*.{h,m}" + ss.preserve_paths = "Libraries/Network/*.js" end s.subspec 'RCTPushNotification' do |ss| - ss.source_files = "Libraries/PushNotificationIOS/*.{h,m}" - ss.preserve_paths = "Libraries/PushNotificationIOS/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/PushNotificationIOS/*.{h,m}" + ss.preserve_paths = "Libraries/PushNotificationIOS/*.js" end s.subspec 'RCTWebSocketDebugger' do |ss| - ss.source_files = "Libraries/RCTWebSocketDebugger/*.{h,m}" + ss.dependency 'React/Core' + ss.source_files = "Libraries/RCTWebSocketDebugger/*.{h,m}" end s.subspec 'RCTText' do |ss| - ss.source_files = "Libraries/Text/*.{h,m}" - ss.preserve_paths = "Libraries/Text/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Text/*.{h,m}" + ss.preserve_paths = "Libraries/Text/*.js" end s.subspec 'RCTVibration' do |ss| - ss.source_files = "Libraries/Vibration/*.{h,m}" - ss.preserve_paths = "Libraries/Vibration/*.js" + ss.dependency 'React/Core' + ss.source_files = "Libraries/Vibration/*.{h,m}" + ss.preserve_paths = "Libraries/Vibration/*.js" end end