Skip to content

Commit 7b69db9

Browse files
committed
Merge pull request #258 from CodaFi/prodspec
Update Podspec
2 parents dcfcf86 + c5dc892 commit 7b69db9

File tree

5 files changed

+95
-84
lines changed

5 files changed

+95
-84
lines changed

.travis.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
language: objective-c
22
osx_image: xcode7
33

4+
env:
5+
- TEST_CONFIG="RELEASE"
6+
# - TEST_CONFIG="CARTHAGE"
7+
- TEST_CONFIG="PODS"
8+
49
before_install:
5-
- gem install xcpretty-travis-formatter --no-rdoc --no-ri --no-document --quiet
10+
- if [[ "$TEST_CONFIG" == "RELEASE" ]]; then gem install xcpretty-travis-formatter --no-rdoc --no-ri --no-document --quiet; fi
11+
- if [[ "$TEST_CONFIG" == "CARTHAGE" ]]; then brew install carthage; fi
612

713
install:
8-
- git submodule update -i --recursive
14+
- if [[ "$TEST_CONFIG" == "RELEASE" ]]; then git submodule update -i --recursive; fi
915

1016
script:
11-
- set -o pipefail && xcodebuild -project Swiftz.xcodeproj -scheme Swiftz -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter`
12-
- set -o pipefail && xcodebuild -project Swiftz.xcodeproj -scheme Swiftz-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter`
17+
- set -o pipefail
18+
- if [[ "$TEST_CONFIG" == "RELEASE" ]]; then xcodebuild -project Swiftz.xcodeproj -scheme Swiftz -sdk macosx ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter`; fi
19+
- if [[ "$TEST_CONFIG" == "RELEASE" ]]; then xcodebuild -project Swiftz.xcodeproj -scheme Swiftz-iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO clean build test | xcpretty -c -f `xcpretty-travis-formatter`; fi
20+
- if [[ "$TEST_CONFIG" == "CARTHAGE" ]]; then carthage update --verbose --no-use-binaries && carthage build --no-skip-current --configuration Debug; fi
21+
- if [[ "$TEST_CONFIG" == "PODS" ]]; then pod lib lint; fi

Swiftz.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ Pod::Spec.new do |s|
1010
s.osx.deployment_target = "10.9"
1111
s.ios.deployment_target = "8.0"
1212
s.source = { :git => "https://github.com/typelift/Swiftz.git", :tag => "v#{s.version}", :submodules => true }
13-
s.source_files = "Swiftz/*.swift", "**/Swiftx/*.swift", "**/Operadics/*.swift"
13+
s.source_files = "Swiftz/*.swift", "**/Swiftx/*.swift", "Carthage/Checkouts/Operadics/*.swift"
1414
end

Swiftz.xcodeproj/project.pbxproj

Lines changed: 73 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,10 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
822A5FC31B4CD9EC00F48B0B /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 822A5FC21B4CD9EC00F48B0B /* Operators.swift */; };
11-
822A5FC41B4CD9EC00F48B0B /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 822A5FC21B4CD9EC00F48B0B /* Operators.swift */; };
10+
821B76B01BC43C1000AF97D6 /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 821B76AF1BC43C1000AF97D6 /* Operators.swift */; settings = {ASSET_TAGS = (); }; };
11+
821B76C51BC43DF000AF97D6 /* SwiftCheck.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 821B76BC1BC43DE100AF97D6 /* SwiftCheck.framework */; };
12+
821B76C81BC43DF900AF97D6 /* SwiftCheck.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 821B76BC1BC43DE100AF97D6 /* SwiftCheck.framework */; };
13+
821B76C91BC4402700AF97D6 /* Operators.swift in Sources */ = {isa = PBXBuildFile; fileRef = 821B76AF1BC43C1000AF97D6 /* Operators.swift */; settings = {ASSET_TAGS = (); }; };
1214
825C0E431B85681C0026E738 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 825C0E421B85681C0026E738 /* Stream.swift */; };
1315
825C0E441B85681C0026E738 /* Stream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 825C0E421B85681C0026E738 /* Stream.swift */; };
1416
825C0E541B859D020026E738 /* Identity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 825C0E531B859D020026E738 /* Identity.swift */; };
@@ -41,7 +43,6 @@
4143
82F3175F1B805EA7007B80E2 /* ArrowExt.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F3175D1B805EA7007B80E2 /* ArrowExt.swift */; };
4244
82F317631B81090B007B80E2 /* ArrowExtSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F317621B81090B007B80E2 /* ArrowExtSpec.swift */; };
4345
82F317641B81090B007B80E2 /* ArrowExtSpec.swift in Sources */ = {isa = PBXBuildFile; fileRef = 82F317621B81090B007B80E2 /* ArrowExtSpec.swift */; };
44-
841408C31B1A8B3F00BA2B6C /* SwiftCheck.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 84DF763E1B0BDD4B00C912B0 /* SwiftCheck.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
4546
841408C41B1A8B4700BA2B6C /* Swiftz.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 84DF751E1B0BD17700C912B0 /* Swiftz.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
4647
84152B731A818A5C006387D5 /* Swiftz.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 84A88F981A71DF7F003D53CF /* Swiftz.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
4748
8480AB4E1A7B448A00C6162D /* Sections.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8480AB4D1A7B448A00C6162D /* Sections.swift */; };
@@ -155,61 +156,61 @@
155156
/* End PBXBuildFile section */
156157

157158
/* Begin PBXContainerItemProxy section */
158-
84A88FA51A71DF7F003D53CF /* PBXContainerItemProxy */ = {
159-
isa = PBXContainerItemProxy;
160-
containerPortal = 84A88F8F1A71DF7F003D53CF /* Project object */;
161-
proxyType = 1;
162-
remoteGlobalIDString = 84A88F971A71DF7F003D53CF;
163-
remoteInfo = Swiftz;
164-
};
165-
84DF752A1B0BD17700C912B0 /* PBXContainerItemProxy */ = {
166-
isa = PBXContainerItemProxy;
167-
containerPortal = 84A88F8F1A71DF7F003D53CF /* Project object */;
168-
proxyType = 1;
169-
remoteGlobalIDString = 84DF751D1B0BD17700C912B0;
170-
remoteInfo = "Swiftz-iOS";
171-
};
172-
84DF76391B0BDD4B00C912B0 /* PBXContainerItemProxy */ = {
159+
821B76BB1BC43DE100AF97D6 /* PBXContainerItemProxy */ = {
173160
isa = PBXContainerItemProxy;
174-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
161+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
175162
proxyType = 2;
176163
remoteGlobalIDString = 844FCC8D198B320500EB242A;
177164
remoteInfo = SwiftCheck;
178165
};
179-
84DF763B1B0BDD4B00C912B0 /* PBXContainerItemProxy */ = {
166+
821B76BD1BC43DE100AF97D6 /* PBXContainerItemProxy */ = {
180167
isa = PBXContainerItemProxy;
181-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
168+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
182169
proxyType = 2;
183170
remoteGlobalIDString = 844FCC98198B320500EB242A;
184171
remoteInfo = SwiftCheckTests;
185172
};
186-
84DF763D1B0BDD4B00C912B0 /* PBXContainerItemProxy */ = {
173+
821B76BF1BC43DE100AF97D6 /* PBXContainerItemProxy */ = {
187174
isa = PBXContainerItemProxy;
188-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
175+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
189176
proxyType = 2;
190177
remoteGlobalIDString = 84DF75F81B0BD54600C912B0;
191178
remoteInfo = "SwiftCheck-iOS";
192179
};
193-
84DF763F1B0BDD4B00C912B0 /* PBXContainerItemProxy */ = {
180+
821B76C11BC43DE100AF97D6 /* PBXContainerItemProxy */ = {
194181
isa = PBXContainerItemProxy;
195-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
182+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
196183
proxyType = 2;
197184
remoteGlobalIDString = 84DF76021B0BD54600C912B0;
198185
remoteInfo = "SwiftCheck-iOSTests";
199186
};
200-
84DF76411B0BDD5900C912B0 /* PBXContainerItemProxy */ = {
187+
821B76C31BC43DED00AF97D6 /* PBXContainerItemProxy */ = {
201188
isa = PBXContainerItemProxy;
202-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
189+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
190+
proxyType = 1;
191+
remoteGlobalIDString = 84DF75F71B0BD54600C912B0;
192+
remoteInfo = "SwiftCheck-iOS";
193+
};
194+
821B76C61BC43DF600AF97D6 /* PBXContainerItemProxy */ = {
195+
isa = PBXContainerItemProxy;
196+
containerPortal = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
203197
proxyType = 1;
204198
remoteGlobalIDString = 844FCC8C198B320500EB242A;
205199
remoteInfo = SwiftCheck;
206200
};
207-
84DF76431B0BDD5C00C912B0 /* PBXContainerItemProxy */ = {
201+
84A88FA51A71DF7F003D53CF /* PBXContainerItemProxy */ = {
208202
isa = PBXContainerItemProxy;
209-
containerPortal = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
203+
containerPortal = 84A88F8F1A71DF7F003D53CF /* Project object */;
210204
proxyType = 1;
211-
remoteGlobalIDString = 84DF75F71B0BD54600C912B0;
212-
remoteInfo = "SwiftCheck-iOS";
205+
remoteGlobalIDString = 84A88F971A71DF7F003D53CF;
206+
remoteInfo = Swiftz;
207+
};
208+
84DF752A1B0BD17700C912B0 /* PBXContainerItemProxy */ = {
209+
isa = PBXContainerItemProxy;
210+
containerPortal = 84A88F8F1A71DF7F003D53CF /* Project object */;
211+
proxyType = 1;
212+
remoteGlobalIDString = 84DF751D1B0BD17700C912B0;
213+
remoteInfo = "Swiftz-iOS";
213214
};
214215
/* End PBXContainerItemProxy section */
215216

@@ -221,7 +222,6 @@
221222
dstSubfolderSpec = 10;
222223
files = (
223224
841408C41B1A8B4700BA2B6C /* Swiftz.framework in CopyFiles */,
224-
841408C31B1A8B3F00BA2B6C /* SwiftCheck.framework in CopyFiles */,
225225
);
226226
runOnlyForDeploymentPostprocessing = 0;
227227
};
@@ -238,7 +238,8 @@
238238
/* End PBXCopyFilesBuildPhase section */
239239

240240
/* Begin PBXFileReference section */
241-
822A5FC21B4CD9EC00F48B0B /* Operators.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Operators.swift; path = Carthage/Checkouts/Operadics/Operators.swift; sourceTree = SOURCE_ROOT; usesTabs = 1; };
241+
821B76AF1BC43C1000AF97D6 /* Operators.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Operators.swift; path = Carthage/Checkouts/Operadics/Operators.swift; sourceTree = SOURCE_ROOT; };
242+
821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SwiftCheck.xcodeproj; path = Carthage/Checkouts/SwiftCheck/SwiftCheck.xcodeproj; sourceTree = SOURCE_ROOT; };
242243
825C0E421B85681C0026E738 /* Stream.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Stream.swift; sourceTree = "<group>"; usesTabs = 1; };
243244
825C0E531B859D020026E738 /* Identity.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Identity.swift; sourceTree = "<group>"; usesTabs = 1; };
244245
826A12F01B3DF9A300547FD4 /* FunctionSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FunctionSpec.swift; sourceTree = "<group>"; usesTabs = 1; };
@@ -313,7 +314,6 @@
313314
84DF751E1B0BD17700C912B0 /* Swiftz.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Swiftz.framework; sourceTree = BUILT_PRODUCTS_DIR; };
314315
84DF75281B0BD17700C912B0 /* Swiftz-iOSTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Swiftz-iOSTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
315316
84DF762F1B0BDCE800C912B0 /* Swiftz.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Swiftz.h; path = Swiftz/Swiftz.h; sourceTree = "<group>"; usesTabs = 1; };
316-
84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = SwiftCheck.xcodeproj; path = Carthage/Checkouts/SwiftCheck/SwiftCheck.xcodeproj; sourceTree = SOURCE_ROOT; };
317317
84F2C4F91A7AEB9B00316E5F /* JSONKeypath.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONKeypath.swift; sourceTree = "<group>"; usesTabs = 1; };
318318
/* End PBXFileReference section */
319319

@@ -329,6 +329,7 @@
329329
isa = PBXFrameworksBuildPhase;
330330
buildActionMask = 2147483647;
331331
files = (
332+
821B76C81BC43DF900AF97D6 /* SwiftCheck.framework in Frameworks */,
332333
84A88FA41A71DF7F003D53CF /* Swiftz.framework in Frameworks */,
333334
);
334335
runOnlyForDeploymentPostprocessing = 0;
@@ -344,13 +345,25 @@
344345
isa = PBXFrameworksBuildPhase;
345346
buildActionMask = 2147483647;
346347
files = (
348+
821B76C51BC43DF000AF97D6 /* SwiftCheck.framework in Frameworks */,
347349
84DF75291B0BD17700C912B0 /* Swiftz.framework in Frameworks */,
348350
);
349351
runOnlyForDeploymentPostprocessing = 0;
350352
};
351353
/* End PBXFrameworksBuildPhase section */
352354

353355
/* Begin PBXGroup section */
356+
821B76B51BC43DE100AF97D6 /* Products */ = {
357+
isa = PBXGroup;
358+
children = (
359+
821B76BC1BC43DE100AF97D6 /* SwiftCheck.framework */,
360+
821B76BE1BC43DE100AF97D6 /* SwiftCheckTests.xctest */,
361+
821B76C01BC43DE100AF97D6 /* SwiftCheck.framework */,
362+
821B76C21BC43DE100AF97D6 /* SwiftCheck-iOSTests.xctest */,
363+
);
364+
name = Products;
365+
sourceTree = "<group>";
366+
};
354367
84A88F8E1A71DF7F003D53CF = {
355368
isa = PBXGroup;
356369
children = (
@@ -376,7 +389,7 @@
376389
isa = PBXGroup;
377390
children = (
378391
84A88FF71A71DFC5003D53CF /* Kinds.swift */,
379-
822A5FC21B4CD9EC00F48B0B /* Operators.swift */,
392+
821B76AF1BC43C1000AF97D6 /* Operators.swift */,
380393
84A890521A71E138003D53CF /* Core */,
381394
84A890541A71E170003D53CF /* Control */,
382395
84A890561A71E19D003D53CF /* Data */,
@@ -408,7 +421,7 @@
408421
84A88FA81A71DF7F003D53CF /* Supporting Files */ = {
409422
isa = PBXGroup;
410423
children = (
411-
84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */,
424+
821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */,
412425
84A88FA91A71DF7F003D53CF /* Info.plist */,
413426
);
414427
name = "Supporting Files";
@@ -530,17 +543,6 @@
530543
name = Data;
531544
sourceTree = "<group>";
532545
};
533-
84DF76331B0BDD4B00C912B0 /* Products */ = {
534-
isa = PBXGroup;
535-
children = (
536-
84DF763A1B0BDD4B00C912B0 /* SwiftCheck.framework */,
537-
84DF763C1B0BDD4B00C912B0 /* SwiftCheckTests.xctest */,
538-
84DF763E1B0BDD4B00C912B0 /* SwiftCheck.framework */,
539-
84DF76401B0BDD4B00C912B0 /* SwiftCheck-iOSTests.xctest */,
540-
);
541-
name = Products;
542-
sourceTree = "<group>";
543-
};
544546
/* End PBXGroup section */
545547

546548
/* Begin PBXHeadersBuildPhase section */
@@ -593,7 +595,7 @@
593595
buildRules = (
594596
);
595597
dependencies = (
596-
84DF76421B0BDD5900C912B0 /* PBXTargetDependency */,
598+
821B76C71BC43DF600AF97D6 /* PBXTargetDependency */,
597599
84A88FA61A71DF7F003D53CF /* PBXTargetDependency */,
598600
);
599601
name = SwiftzTests;
@@ -631,7 +633,7 @@
631633
buildRules = (
632634
);
633635
dependencies = (
634-
84DF76441B0BDD5C00C912B0 /* PBXTargetDependency */,
636+
821B76C41BC43DED00AF97D6 /* PBXTargetDependency */,
635637
84DF752B1B0BD17700C912B0 /* PBXTargetDependency */,
636638
);
637639
name = "Swiftz-iOSTests";
@@ -675,8 +677,8 @@
675677
projectDirPath = "";
676678
projectReferences = (
677679
{
678-
ProductGroup = 84DF76331B0BDD4B00C912B0 /* Products */;
679-
ProjectRef = 84DF76321B0BDD4B00C912B0 /* SwiftCheck.xcodeproj */;
680+
ProductGroup = 821B76B51BC43DE100AF97D6 /* Products */;
681+
ProjectRef = 821B76B41BC43DE100AF97D6 /* SwiftCheck.xcodeproj */;
680682
},
681683
);
682684
projectRoot = "";
@@ -690,32 +692,32 @@
690692
/* End PBXProject section */
691693

692694
/* Begin PBXReferenceProxy section */
693-
84DF763A1B0BDD4B00C912B0 /* SwiftCheck.framework */ = {
695+
821B76BC1BC43DE100AF97D6 /* SwiftCheck.framework */ = {
694696
isa = PBXReferenceProxy;
695697
fileType = wrapper.framework;
696698
path = SwiftCheck.framework;
697-
remoteRef = 84DF76391B0BDD4B00C912B0 /* PBXContainerItemProxy */;
699+
remoteRef = 821B76BB1BC43DE100AF97D6 /* PBXContainerItemProxy */;
698700
sourceTree = BUILT_PRODUCTS_DIR;
699701
};
700-
84DF763C1B0BDD4B00C912B0 /* SwiftCheckTests.xctest */ = {
702+
821B76BE1BC43DE100AF97D6 /* SwiftCheckTests.xctest */ = {
701703
isa = PBXReferenceProxy;
702704
fileType = wrapper.cfbundle;
703705
path = SwiftCheckTests.xctest;
704-
remoteRef = 84DF763B1B0BDD4B00C912B0 /* PBXContainerItemProxy */;
706+
remoteRef = 821B76BD1BC43DE100AF97D6 /* PBXContainerItemProxy */;
705707
sourceTree = BUILT_PRODUCTS_DIR;
706708
};
707-
84DF763E1B0BDD4B00C912B0 /* SwiftCheck.framework */ = {
709+
821B76C01BC43DE100AF97D6 /* SwiftCheck.framework */ = {
708710
isa = PBXReferenceProxy;
709711
fileType = wrapper.framework;
710712
path = SwiftCheck.framework;
711-
remoteRef = 84DF763D1B0BDD4B00C912B0 /* PBXContainerItemProxy */;
713+
remoteRef = 821B76BF1BC43DE100AF97D6 /* PBXContainerItemProxy */;
712714
sourceTree = BUILT_PRODUCTS_DIR;
713715
};
714-
84DF76401B0BDD4B00C912B0 /* SwiftCheck-iOSTests.xctest */ = {
716+
821B76C21BC43DE100AF97D6 /* SwiftCheck-iOSTests.xctest */ = {
715717
isa = PBXReferenceProxy;
716718
fileType = wrapper.cfbundle;
717719
path = "SwiftCheck-iOSTests.xctest";
718-
remoteRef = 84DF763F1B0BDD4B00C912B0 /* PBXContainerItemProxy */;
720+
remoteRef = 821B76C11BC43DE100AF97D6 /* PBXContainerItemProxy */;
719721
sourceTree = BUILT_PRODUCTS_DIR;
720722
};
721723
/* End PBXReferenceProxy section */
@@ -778,7 +780,6 @@
778780
825C0E541B859D020026E738 /* Identity.swift in Sources */,
779781
84A890111A71DFC5003D53CF /* Arrow.swift in Sources */,
780782
84A890261A71DFC5003D53CF /* JSON.swift in Sources */,
781-
822A5FC31B4CD9EC00F48B0B /* Operators.swift in Sources */,
782783
84A890271A71DFC5003D53CF /* Kinds.swift in Sources */,
783784
84A8903D1A71DFC5003D53CF /* TupleExt.swift in Sources */,
784785
84A8902C1A71DFC5003D53CF /* Monoid.swift in Sources */,
@@ -794,6 +795,7 @@
794795
828BB55C1B7E71B600D3327A /* Writer.swift in Sources */,
795796
84A8901D1A71DFC5003D53CF /* Functor.swift in Sources */,
796797
825C0E431B85681C0026E738 /* Stream.swift in Sources */,
798+
821B76B01BC43C1000AF97D6 /* Operators.swift in Sources */,
797799
82BCF1541B8DE7A500BA6864 /* Optional.swift in Sources */,
798800
84A8901C1A71DFC5003D53CF /* Function.swift in Sources */,
799801
8496F0E71B37571F00896D26 /* Foldable.swift in Sources */,
@@ -859,7 +861,6 @@
859861
82F3175F1B805EA7007B80E2 /* ArrowExt.swift in Sources */,
860862
84DF75B71B0BD1D400C912B0 /* Copointed.swift in Sources */,
861863
825C0E551B859D020026E738 /* Identity.swift in Sources */,
862-
822A5FC41B4CD9EC00F48B0B /* Operators.swift in Sources */,
863864
84DF75B81B0BD1D400C912B0 /* Function.swift in Sources */,
864865
84DF75B91B0BD1D400C912B0 /* Functor.swift in Sources */,
865866
84DF75BA1B0BD1D400C912B0 /* HList.swift in Sources */,
@@ -877,6 +878,7 @@
877878
828BB55D1B7E71B600D3327A /* Writer.swift in Sources */,
878879
84DF75C41B0BD1D400C912B0 /* State.swift in Sources */,
879880
825C0E441B85681C0026E738 /* Stream.swift in Sources */,
881+
821B76C91BC4402700AF97D6 /* Operators.swift in Sources */,
880882
82BCF1551B8DE7A500BA6864 /* Optional.swift in Sources */,
881883
8496F0E81B37571F00896D26 /* Foldable.swift in Sources */,
882884
84DF75C51B0BD1D400C912B0 /* SYB.swift in Sources */,
@@ -921,6 +923,16 @@
921923
/* End PBXSourcesBuildPhase section */
922924

923925
/* Begin PBXTargetDependency section */
926+
821B76C41BC43DED00AF97D6 /* PBXTargetDependency */ = {
927+
isa = PBXTargetDependency;
928+
name = "SwiftCheck-iOS";
929+
targetProxy = 821B76C31BC43DED00AF97D6 /* PBXContainerItemProxy */;
930+
};
931+
821B76C71BC43DF600AF97D6 /* PBXTargetDependency */ = {
932+
isa = PBXTargetDependency;
933+
name = SwiftCheck;
934+
targetProxy = 821B76C61BC43DF600AF97D6 /* PBXContainerItemProxy */;
935+
};
924936
84A88FA61A71DF7F003D53CF /* PBXTargetDependency */ = {
925937
isa = PBXTargetDependency;
926938
target = 84A88F971A71DF7F003D53CF /* Swiftz */;
@@ -931,16 +943,6 @@
931943
target = 84DF751D1B0BD17700C912B0 /* Swiftz-iOS */;
932944
targetProxy = 84DF752A1B0BD17700C912B0 /* PBXContainerItemProxy */;
933945
};
934-
84DF76421B0BDD5900C912B0 /* PBXTargetDependency */ = {
935-
isa = PBXTargetDependency;
936-
name = SwiftCheck;
937-
targetProxy = 84DF76411B0BDD5900C912B0 /* PBXContainerItemProxy */;
938-
};
939-
84DF76441B0BDD5C00C912B0 /* PBXTargetDependency */ = {
940-
isa = PBXTargetDependency;
941-
name = "SwiftCheck-iOS";
942-
targetProxy = 84DF76431B0BDD5C00C912B0 /* PBXContainerItemProxy */;
943-
};
944946
/* End PBXTargetDependency section */
945947

946948
/* Begin XCBuildConfiguration section */

0 commit comments

Comments
 (0)