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?
676 Views Asked by John Basile At
1
There are 1 best solutions below
Related Questions in COCOAPODS
- Cannot pod spec lint because of undeclared type errors
- CocoaPods Failed to Lint A Podspec Due to Objective-C Generated Interface Header Not Found
- Cocoapods library not found for apple watch extensions
- PureLayout in Swift with Cocoapods
- Can't find Pods.modulemap - looking in wrong directory
- Update AWSS3 with Cocoapods
- Error installing cocoapods: Failed to build gem native extension
- Google Maps 1.10.1 iOS with cocoapods giving duplicate symbol error
- install cocoapods library with specific name
- How to use YouTube iOS player helper with use_frameworks! with CocoaPods
- Google Sign in CocoaPods Install in Swift?
- How to remove Cocoa-Pod from project?
- Getting error in Adjust library, Integrated with Pods
- Cocoapods generate bad xcconfig file - no header search path
- Google Map flickering in iOS
Related Questions in REACTIVE-COCOA
- Reactive Cocoa Conditional Split ?
- Send error from doNext block?
- What is the proper use of NSNotificationCenter with ReactiveCocoa 3 and Swift?
- Getting error compiling ReactiveCocoa
- How to merge multiple signal and stop on first next but not to stop on first error?
- how to get item from rac_sequence, reactive cocoa, ios
- Bind Signal from two combined request with ReactiveCocoa
- When implementing the VIPER pattern as described on objc.io, should care be taken to hide ReactiveCocoa as an implementation detail?
- What are benefits of NSRunLoop vs dispatch_source_t timer vs ReactiveCocoa bindings
- ReactiveCocoa Combine Latest with Button press and Text Field Delegate Signal
- How to Convert NSError SignalProducer to NoError SignalProducer in ReactiveCocoa (Swift)
- Receive KVO notifications for all property and changes recursively at top level
- swift ReactiveCocoa combineLatest
- How to handle invalid token using ReactiveCocoa
- Implement Pan Gesture Interface Using ReactiveCocoa
Related Questions in REACTIVE-COCOA-3
- How to Convert NSError SignalProducer to NoError SignalProducer in ReactiveCocoa (Swift)
- How do I set up a ReactiveCocoa 3.0 podspec to be used as a 'private pod' with my test project?
- How to disregard events when other event is executed?
- Dynamic OneToMany ReactiveCocoa binding
- How to transform from RACSignal(the Objective-C version) to Signal (the Swift version)
- Multiple observers of a MutableProperty in RAC3
- OSS projects that use "swiftest" ReactiveCocoa 3 API
- Create signal that doesn't return a value
- Recommended way to pass user input to ViewModel with RAC3
- ReactiveCocoa 3 - bufferWithTime
- ReactiveCocoa combine SignalProducers into one
- How can I convert "SignalProducer<Bool, NoError>" to "SignalProducer<Bool, NSError>" of ReactiveCocoa 3?
- Observing mouse event in ViewModel Swift (Reactive Cocoa 3.0)
- Create a signal that emits one object then completes?
- How might I use ReactiveCocoa/RACSignal to "RACify" a UIApplicationDelegate lifecycle event like didFinishLaunchingWithOptions?
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 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.