Skip to content
This repository was archived by the owner on Jun 13, 2023. It is now read-only.

Commit 15438a8

Browse files
authored
Remove Bolts dependency and related helper files (#223)
Based on discussions in #222 around how to handle the Bolts dependency, it was determined the best course of action is probably to remove the Bolts dependency entirely, including the small set of helper code that made use of it. Since the helper code is not complex and can easily be added by developers to their own projects, it was agreed that the removal of the Bolts dependency outweighed the benefits of having these helper methods available by default.
1 parent b337513 commit 15438a8

File tree

3 files changed

+0
-52
lines changed

3 files changed

+0
-52
lines changed

ParseLiveQuery.podspec

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,5 @@ Pod::Spec.new do |s|
2525
s.dependency 'Parse', '~> 1.17.3'
2626
s.dependency 'Bolts-Swift', '~> 1.5.0'
2727
s.dependency 'Starscream', '~> 3.1.0'
28-
s.dependency 'Bolts', '~> 1.9.0'
2928

3029
end

Sources/ParseLiveQuery.xcodeproj/project.pbxproj

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,11 @@
2323
F534A5B21BDAFE0200CBD11A /* Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F534A5B11BDAFE0200CBD11A /* Subscription.swift */; };
2424
F534A5B41BDB09CE00CBD11A /* Operation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F534A5B31BDB09CE00CBD11A /* Operation.swift */; };
2525
F54D58B81C8E3446009F8D6C /* ClientPrivate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F54D58B71C8E3446009F8D6C /* ClientPrivate.swift */; };
26-
F54D58BA1C8E345F009F8D6C /* BoltsHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F54D58B91C8E345F009F8D6C /* BoltsHelpers.swift */; };
2726
F59CA92F1C8E496200329737 /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = F59CA92E1C8E496200329737 /* Errors.swift */; };
2827
F5A88F4A1C9B6EBA002F0E0D /* PFQuery+Subscribe.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A88F491C9B6EBA002F0E0D /* PFQuery+Subscribe.swift */; };
2928
F5A88F4E1C9B7341002F0E0D /* QueryEncoder.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5591BA91BD97BB70072F966 /* QueryEncoder.swift */; };
3029
F5A88F4F1C9B7341002F0E0D /* Operation.swift in Sources */ = {isa = PBXBuildFile; fileRef = F534A5B31BDB09CE00CBD11A /* Operation.swift */; };
3130
F5A88F501C9B7341002F0E0D /* ClientPrivate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F54D58B71C8E3446009F8D6C /* ClientPrivate.swift */; };
32-
F5A88F511C9B7341002F0E0D /* BoltsHelpers.swift in Sources */ = {isa = PBXBuildFile; fileRef = F54D58B91C8E345F009F8D6C /* BoltsHelpers.swift */; };
3331
F5A88F521C9B7341002F0E0D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5591BA31BD720E10072F966 /* Client.swift */; };
3432
F5A88F531C9B7341002F0E0D /* Subscription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F534A5B11BDAFE0200CBD11A /* Subscription.swift */; };
3533
F5A88F551C9B7341002F0E0D /* Errors.swift in Sources */ = {isa = PBXBuildFile; fileRef = F59CA92E1C8E496200329737 /* Errors.swift */; };
@@ -296,7 +294,6 @@
296294
F534A5B31BDB09CE00CBD11A /* Operation.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Operation.swift; sourceTree = "<group>"; };
297295
F54D58B51C8E33D9009F8D6C /* ObjCCompat.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ObjCCompat.swift; sourceTree = "<group>"; };
298296
F54D58B71C8E3446009F8D6C /* ClientPrivate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClientPrivate.swift; sourceTree = "<group>"; };
299-
F54D58B91C8E345F009F8D6C /* BoltsHelpers.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BoltsHelpers.swift; sourceTree = "<group>"; };
300297
F5591BA31BD720E10072F966 /* Client.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Client.swift; sourceTree = "<group>"; };
301298
F5591BA91BD97BB70072F966 /* QueryEncoder.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = QueryEncoder.swift; sourceTree = "<group>"; };
302299
F5903CEA1BD999C500C3EFFE /* ParseLiveQuery.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ParseLiveQuery.framework; sourceTree = BUILT_PRODUCTS_DIR; };
@@ -456,7 +453,6 @@
456453
F5591BA91BD97BB70072F966 /* QueryEncoder.swift */,
457454
F534A5B31BDB09CE00CBD11A /* Operation.swift */,
458455
F54D58B71C8E3446009F8D6C /* ClientPrivate.swift */,
459-
F54D58B91C8E345F009F8D6C /* BoltsHelpers.swift */,
460456
);
461457
path = Internal;
462458
sourceTree = "<group>";
@@ -814,7 +810,6 @@
814810
F54D58B81C8E3446009F8D6C /* ClientPrivate.swift in Sources */,
815811
F5D965351BD99DA200C3AAFC /* Client.swift in Sources */,
816812
0632EDD51CA1A6DB00DD3CB8 /* Parse+LiveQuery.swift in Sources */,
817-
F54D58BA1C8E345F009F8D6C /* BoltsHelpers.swift in Sources */,
818813
F5D965381BD99DA200C3AAFC /* QueryEncoder.swift in Sources */,
819814
F534A5B21BDAFE0200CBD11A /* Subscription.swift in Sources */,
820815
F59CA92F1C8E496200329737 /* Errors.swift in Sources */,
@@ -830,7 +825,6 @@
830825
files = (
831826
F5A88F531C9B7341002F0E0D /* Subscription.swift in Sources */,
832827
0632EDD41CA1A6DB00DD3CB8 /* Parse+LiveQuery.swift in Sources */,
833-
F5A88F511C9B7341002F0E0D /* BoltsHelpers.swift in Sources */,
834828
F5A88F501C9B7341002F0E0D /* ClientPrivate.swift in Sources */,
835829
F5A88F551C9B7341002F0E0D /* Errors.swift in Sources */,
836830
F5A88F4E1C9B7341002F0E0D /* QueryEncoder.swift in Sources */,

Sources/ParseLiveQuery/Internal/BoltsHelpers.swift

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)