I'm learning ReactiveCocoa by using a WORKBENCH project of mine. However, the latest CocoaPod's spec is for version 2.1.8 - and I want to use the ReactiveCocoa 3.0 to go thru the 'learning curve'. I thought of going the route of creating a 'Private CocoaPod' podspec, but it has not worked out for me... (I'm a noob with CocoaPods). Anyway, has anybody done this? is there a bester way? Ideally, I want to update the ReactiveCocoa 3.0 with Sourcetree as updates are made - just like it works now for version 2.1.8... Thanks.
How do I set up a ReactiveCocoa 3.0 podspec to be used as a 'private pod' with my test project?
678 Views Asked by John Basile At
1
There are 1 best solutions below
Related Questions in COCOAPODS
- Module not found when building flutter app for IOS
- My project code not running in Xcode(15.3) but the same code running in Xcode 14.2 in swift how to fix in xcode 15.3?
- I can not install CocoaPods and any package from "Add package dependency"
- JSON::ParserError on trying to run Flutter Project on iOS
- Google Maps Flutter plugin for IOS: Undefined symbol
- Embed Flutter inside a cocoapod and use it in the main project
- SwiftUI App only install framework(SwiftUI) not it's dependency(SDK.framework)
- iOS build failed using Expo EAS build. How can i fix issues with <PBXResourcesBuildPhase UUID=...> and pods not being defining modules?
- Module 'cloud_firestore' not found - Flutter Xcode Build
- Firebase SDK 10+ - unable to install packages
- Ld ADDRESS normal (in target 'PROJECT_NAME' from project 'PROJECT_NAME') (1 failure)
- Error updating Flutter project: CocoaPods could not find compatible versions for pod "webview_flutter_wkwebview"
- Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object and option to allow fragments not set
- How to debug this Install Pods error on an EAS build for React Native Application
- Failed iOS Build with Expo on GitHub Actions: CocoaPod Error
Related Questions in REACTIVE-COCOA
- What is correct way to make a UIButton change a MutableProperty?
- Reduce array of properties ReactiveSwift
- Migrating from ObjC KVO to ReactiveSwift
- How to map a completed event to an interrupt event when take(duringLifetimeOf:) happened in ReactiveSwift
- MultiThreaded delaying class deallocation
- when I run this NPX POD-INSTALL it gives me this COCOAPODS IS NOT SUPPORTED IN THIS PROJECT #ReactNative
- Combine previous value using Combine
- Should I check the existence of weakself before use @strongify(self) in ReactiveObjc?
- Ambiguous use of operator '<~' in ReactiveSwift
- '() -> BindingTarget<Error>' is not convertible to '(Bool) -> BindingTarget<Error>'
- Dont complete on fail in Reactive Swift
- How to use SignalProducer.timer for ReactiveCocoa 9.0
- rx.sentMessage(#selector(UIViewController.viewDidLoad)) is not firing
- Designing observable objects
- reactivecocoa rac binding bool array to set mutilple uilabel text
Related Questions in REACTIVE-COCOA-3
- Dynamic OneToMany ReactiveCocoa binding
- ReactiveCocoa swift3 migration
- Create a signal that emits one object then completes?
- Reactive cocoa attemptmap return type
- Simple observable struct with RxSwift?
- How to map values and errors on SignalProducer
- ReactiveCocoa subscribe to completed event of flattenmaped signal
- How to disregard events when other event is executed?
- Create a moving average (and other FIR filters) using ReactiveCocoa
- DynamicProperty vs MutableProperty vs AnyProperty vs ConstantsProperty
- ReactiveCocoa - SignalProducer that emits the latest N values in array
- Reactive(Cocoa) or otherwise approach to mapping a producer whose map function depends on another producer
- Multicasting of cold signals in RAC3/4
- RAC 4.0 How to chain SignalProducers correctly?
- When should/must I declare/instantiate ReactiveCocoa objects as stored properties versus local variables?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The ReactiveCocoa folks have moved away from CocoaPods in favor of Carthage, primarily because CocoaPods was late to the game supporting Swift and dynamic frameworks -- which is what RAC3 requires. As someone who struggled to get ReactiveCocoa working in an existing project using CocoaPods, I would urge you not to go that route. It's infuriating.
All the info you need to get started with Carthage can be found on Carthage's github landing page.