Skip to content

Commit 34e3408

Browse files
authored
Merge pull request #181 from pusher/starscream-update
Use Starscream instead of StarscreamFork
2 parents 3daf32b + e169750 commit 34e3408

File tree

9 files changed

+11
-13
lines changed

9 files changed

+11
-13
lines changed

Cartfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
github "krzyzanowskim/CryptoSwift"
22
github "ashleymills/Reachability.swift"
33
github "icanzilb/TaskQueue"
4-
5-
# github "daltoniam/Starscream"
6-
github "hamchapman/Starscream"
4+
github "daltoniam/Starscream"

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "ashleymills/Reachability.swift" "v4.1.0"
2-
github "hamchapman/Starscream" "3.0.6"
2+
github "daltoniam/Starscream" "3.0.5"
33
github "icanzilb/TaskQueue" "1.1.1"
44
github "krzyzanowskim/CryptoSwift" "0.9.0"

PusherSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Pod::Spec.new do |s|
1414
s.dependency 'CryptoSwift', '~> 0.9.0'
1515
s.dependency 'ReachabilitySwift', '~> 4.1.0'
1616
s.dependency 'TaskQueue', '~> 1.1.1'
17-
s.dependency 'StarscreamFork', '~> 3.0.6'
17+
s.dependency 'Starscream', '~> 3.0.5'
1818

1919
s.ios.deployment_target = '8.0'
2020
s.osx.deployment_target = '10.10'

PusherSwift.xcodeproj/project.pbxproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@
296296
files = (
297297
);
298298
inputPaths = (
299-
StarscreamFork,
299+
Starscream,
300300
TaskQueue,
301301
CryptoSwift,
302302
Reachability,

Sources/PusherConnection.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22
import Reachability
3-
import StarscreamFork
3+
import Starscream
44
import CryptoSwift
55

66
public typealias PusherEventJSON = [String: AnyObject]

Sources/PusherSwift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Foundation
2-
import StarscreamFork
2+
import Starscream
33

44
let PROTOCOL = 7
55
let VERSION = "6.0.0"

Sources/PusherWebsocketDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Foundation
2-
import StarscreamFork
2+
import Starscream
33

44
extension PusherConnection: WebSocketDelegate {
55

Tests/Mocks.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import PusherSwift
2-
import StarscreamFork
2+
import Starscream
33

44
open class MockWebSocket: WebSocket {
55
let stubber = StubberForMocks()

iOS Example Swift/iOS Example Swift.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
335AD5AB20569C3C000D4D08 /* TaskQueue.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 335AD5A720569C3B000D4D08 /* TaskQueue.framework */; };
1414
335AD5AC20569C3C000D4D08 /* Reachability.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 335AD5A820569C3B000D4D08 /* Reachability.framework */; };
1515
335AD5B220569F14000D4D08 /* PusherSwift.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 33CC82EA1D7F16A8003B699F /* PusherSwift.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
16-
3373BF4D2068F201005A61BE /* StarscreamFork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3373BF4C2068F201005A61BE /* StarscreamFork.framework */; };
1716
33831CC21A9CFCDB00B124F1 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33831CBE1A9CFCDB00B124F1 /* AppDelegate.swift */; };
1817
33831CC31A9CFCDB00B124F1 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 33831CBF1A9CFCDB00B124F1 /* Images.xcassets */; };
1918
33831CC41A9CFCDB00B124F1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 33831CC01A9CFCDB00B124F1 /* Main.storyboard */; };
2019
33831CC51A9CFCDB00B124F1 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33831CC11A9CFCDB00B124F1 /* ViewController.swift */; };
2120
33CC82EB1D7F16A8003B699F /* PusherSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 33CC82EA1D7F16A8003B699F /* PusherSwift.framework */; };
21+
33E94E7620766DBE0005399D /* Starscream.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 335AD5A920569C3B000D4D08 /* Starscream.framework */; };
2222
/* End PBXBuildFile section */
2323

2424
/* Begin PBXContainerItemProxy section */
@@ -88,7 +88,7 @@
8888
isa = PBXFrameworksBuildPhase;
8989
buildActionMask = 2147483647;
9090
files = (
91-
3373BF4D2068F201005A61BE /* StarscreamFork.framework in Frameworks */,
91+
33E94E7620766DBE0005399D /* Starscream.framework in Frameworks */,
9292
335AD5AA20569C3C000D4D08 /* CryptoSwift.framework in Frameworks */,
9393
335AD5AB20569C3C000D4D08 /* TaskQueue.framework in Frameworks */,
9494
335AD5AC20569C3C000D4D08 /* Reachability.framework in Frameworks */,
@@ -282,7 +282,7 @@
282282
"$(SRCROOT)/../Carthage/Build/iOS/CryptoSwift.framework",
283283
"$(SRCROOT)/../Carthage/Build/iOS/TaskQueue.framework",
284284
"$(SRCROOT)/../Carthage/Build/iOS/Reachability.framework",
285-
"$(SRCROOT)/../Carthage/Build/iOS/StarscreamFork.framework",
285+
"$(SRCROOT)/../Carthage/Build/iOS/Starscream.framework",
286286
);
287287
name = "Copy Carthage Frameworks";
288288
outputPaths = (

0 commit comments

Comments
 (0)