Skip to content

Commit

Permalink
Updated version of RAC to alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Leonov committed Dec 8, 2015
1 parent 1bdffc5 commit 217894b
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion Podfile
@@ -1,4 +1,4 @@
use_frameworks!
platform :ios, '8.0'

pod 'ReactiveCocoa', '~> 4.0.2-alpha-1'
pod 'ReactiveCocoa', '~> 4.0.4-alpha-4'
28 changes: 14 additions & 14 deletions Podfile.lock
@@ -1,22 +1,22 @@
PODS:
- ReactiveCocoa (4.0.2-alpha-1):
- ReactiveCocoa/UI (= 4.0.2-alpha-1)
- Result (~> 0.6-beta.1)
- ReactiveCocoa/Core (4.0.2-alpha-1):
- ReactiveCocoa (4.0.4-alpha-4):
- ReactiveCocoa/UI (= 4.0.4-alpha-4)
- Result (~> 1.0)
- ReactiveCocoa/Core (4.0.4-alpha-4):
- ReactiveCocoa/no-arc
- Result (~> 0.6-beta.1)
- ReactiveCocoa/no-arc (4.0.2-alpha-1):
- Result (~> 0.6-beta.1)
- ReactiveCocoa/UI (4.0.2-alpha-1):
- Result (~> 1.0)
- ReactiveCocoa/no-arc (4.0.4-alpha-4):
- Result (~> 1.0)
- ReactiveCocoa/UI (4.0.4-alpha-4):
- ReactiveCocoa/Core
- Result (~> 0.6-beta.1)
- Result (0.6-beta.1)
- Result (~> 1.0)
- Result (1.0.0)

DEPENDENCIES:
- ReactiveCocoa (~> 4.0.2-alpha-1)
- ReactiveCocoa (~> 4.0.4-alpha-4)

SPEC CHECKSUMS:
ReactiveCocoa: 652cf90e5de65708e7e2111f77405756da21aabe
Result: af24e3e57ab81005ec4221a53fd36dc1e7a52869
ReactiveCocoa: e459ea92099447802df20c4735e31e8139b06094
Result: feaaff535eb59c414c6c7f95e6145ab991b1b07f

COCOAPODS: 0.38.0
COCOAPODS: 0.39.0
6 changes: 3 additions & 3 deletions ReactiveCocoaPlayground.playground/Contents.swift
Expand Up @@ -7,9 +7,9 @@
import Foundation
import ReactiveCocoa

let helloProducer: SignalProducer<String, NoError> = SignalProducer { sink, _ in
sendNext(sink, "Hello, RAC!")
sendCompleted(sink)
let helloProducer: SignalProducer<String, NoError> = SignalProducer { observer, _ in
observer.sendNext("Hello, RAC!")
observer.sendCompleted()
}

func helloProcessor(message: String) {
Expand Down
2 changes: 1 addition & 1 deletion ReactiveCocoaPlayground.playground/contents.xcplayground
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<playground version='5.0' target-platform='ios' requires-full-environment='true' display-mode='rendered'>
<playground version='5.0' target-platform='ios' display-mode='rendered'>
<timeline fileName='timeline.xctimeline'/>
</playground>
4 changes: 2 additions & 2 deletions ReactiveCocoaPlayground.playground/timeline.xctimeline
Expand Up @@ -3,12 +3,12 @@
version = "3.0">
<TimelineItems>
<LoggerValueHistoryTimelineItem
documentLocation = "#CharacterRangeLen=14&amp;CharacterRangeLoc=540&amp;EndingColumnNumber=19&amp;EndingLineNumber=15&amp;StartingColumnNumber=5&amp;StartingLineNumber=15&amp;Timestamp=464371254.357261"
documentLocation = "#CharacterRangeLen=14&amp;CharacterRangeLoc=552&amp;EndingColumnNumber=19&amp;EndingLineNumber=15&amp;StartingColumnNumber=5&amp;StartingLineNumber=15&amp;Timestamp=471230196.482022"
selectedRepresentationIndex = "0"
shouldTrackSuperviewWidth = "NO">
</LoggerValueHistoryTimelineItem>
<LoggerValueHistoryTimelineItem
documentLocation = "#CharacterRangeLen=14&amp;CharacterRangeLoc=228&amp;EndingColumnNumber=19&amp;EndingLineNumber=10&amp;StartingColumnNumber=5&amp;StartingLineNumber=10&amp;Timestamp=464371254.357535"
documentLocation = "#CharacterRangeLen=0&amp;CharacterRangeLoc=299&amp;EndingColumnNumber=19&amp;EndingLineNumber=13&amp;StartingColumnNumber=5&amp;StartingLineNumber=0&amp;Timestamp=471230196.482195"
selectedRepresentationIndex = "0"
shouldTrackSuperviewWidth = "NO">
</LoggerValueHistoryTimelineItem>
Expand Down
6 changes: 3 additions & 3 deletions ReactiveCocoaPlayground.xcodeproj/project.pbxproj
Expand Up @@ -7,7 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
325BA0701732E025378AE281 /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A48AF16C655F7C406F2E0DD4 /* Pods.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
325BA0701732E025378AE281 /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A48AF16C655F7C406F2E0DD4 /* Pods.framework */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
Expand Down Expand Up @@ -214,7 +214,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -252,7 +252,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 9.1;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
VALIDATE_PRODUCT = YES;
Expand Down

0 comments on commit 217894b

Please sign in to comment.