xcfit 0.3.0 → 0.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/XCFit.podspec +3 -5
- data/XCFit/Classes/CliSwift.swift +87 -0
- data/XCFit/Classes/CopyDir.swift +26 -0
- data/XCFitDemo/FitNesseRoot/RecentChanges/content.txt +1 -1
- data/XCFitDemo/FitNesseRoot/files/testResults/FrontPage.ShoudIBuyMilk/20160716220147_1_0_0_0.xml +242 -0
- data/XCFitDemo/FitNesseRoot/files/testResults/FrontPage/20160716220147_1_0_0_0.xml +49 -0
- data/XCFitDemo/LaunchFitnesse +47 -6
- data/XCFitDemo/Podfile +2 -2
- data/XCFitDemo/Podfile.lock +5 -9
- data/XCFitDemo/Pods/Manifest.lock +5 -9
- data/XCFitDemo/Pods/OCSlimProject/Pod/Support/SharedSupport/LICENCE.txt +214 -0
- data/XCFitDemo/Pods/OCSlimProject/Pod/Support/SharedSupport/LaunchFitnesse +47 -6
- data/XCFitDemo/Pods/OCSlimProject/Pod/Support/SharedSupport/fitnesse-standalone.jar +0 -0
- data/XCFitDemo/Pods/OCSlimProject/README.md +44 -45
- data/XCFitDemo/Pods/Pods.xcodeproj/project.pbxproj +290 -413
- data/XCFitDemo/Pods/Target Support Files/OCSlimProject/ResourceBundle-OCSlimProject-Info.plist +1 -1
- data/XCFitDemo/Pods/XCFit/LICENSE +19 -0
- data/XCFitDemo/Pods/XCFit/README.md +33 -0
- data/XCFitDemo/Pods/XCFit/XCFit/Classes/CliSwift.swift +87 -0
- data/XCFitDemo/Pods/XCFit/XCFit/Classes/CopyDir.swift +26 -0
- data/lib/XCFit/main.rb +41 -3
- data/lib/XCFit/version.rb +1 -1
- metadata +12 -5
- data/XCFit/Classes/ReplaceMe.swift +0 -0
- data/XCFitDemo/Pods/Local Podspecs/XCFit.podspec.json +0 -33
- data/XCFitDemo/Pods/Target Support Files/XCFit/ResourceBundle-XCFit-Info.plist +0 -24
Binary file
|
@@ -5,80 +5,79 @@
|
|
5
5
|
[![License](https://img.shields.io/cocoapods/l/OCSlimProject.svg?style=flat)](http://cocoapods.org/pods/OCSlimProject)
|
6
6
|
[![Platform](https://img.shields.io/cocoapods/p/OCSlimProject.svg?style=flat)](http://cocoapods.org/pods/OCSlimProject)
|
7
7
|
|
8
|
-
## Usage
|
9
8
|
|
10
|
-
|
9
|
+
###OCSlimProject is a lightweight Xcode project template and set of scripts for creating fast, rock solid, non UI based Acceptance Tests on iOS and OS X using [Fitnesse](http://fitnesse.org).
|
11
10
|
|
12
|
-
## Requirements
|
13
|
-
- Xcode 7
|
14
|
-
- Java 6 (required for Fitnesse)
|
15
11
|
|
12
|
+
### Usage
|
13
|
+
|
14
|
+
To run the example project, clone the repo, and run `pod install` from the Example directory first.
|
15
|
+
Check out this [video from NSLondon](http://stringerstheory.net/nslondon-video/) to see it in action.
|
16
|
+
|
17
|
+
### Requirements
|
18
|
+
- Xcode 7
|
19
|
+
- [Java 1.8](http://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html) (required for Fitnesse)
|
16
20
|
|
17
|
-
|
21
|
+
### Installation
|
18
22
|
|
19
|
-
OCSlimProject is available through [CocoaPods](http://cocoapods.org). To install
|
23
|
+
OCSlimProject is available to your own projects through [CocoaPods](http://cocoapods.org). To install
|
20
24
|
it, simply add the following line to your Podfile:
|
21
25
|
|
22
26
|
```ruby
|
23
27
|
pod "OCSlimProject"
|
24
28
|
```
|
25
29
|
|
26
|
-
##
|
27
|
-
|
28
|
-
Paul Stringer, paulstringer@mac.com
|
29
|
-
|
30
|
-
## License
|
31
|
-
|
32
|
-
OCSlimProject is available under the MIT license. See the LICENSE file for more info.
|
33
|
-
|
34
|
-
--
|
35
|
-
|
36
|
-
# OCSlimProject
|
37
|
-
A lightweight Project Template and scripts to help you get setup writing fast, rock solid, non UI based Acceptance Tests using [Fitnesse](http://fitnesse.org).
|
38
|
-
|
39
|
-
How to Use
|
40
|
-
==========
|
30
|
+
## How to Use in your own Project
|
41
31
|
|
42
|
-
*
|
43
|
-
*
|
44
|
-
*
|
32
|
+
* Download OCSlimProject
|
33
|
+
* Run ```$ make```. This adds the Xcode project templates for creating Acceptance Test targets within Xcode (iOS & OS X).
|
34
|
+
* Add an 'AcceptanceTests' target to your Project using the Acceptance Test templates now installed under the Test project categories
|
35
|
+
* Using CocoaPods link OCSlimProject to your 'AcceptanceTests' target with the following Podfile entry
|
45
36
|
|
46
37
|
```
|
47
38
|
target 'AcceptanceTests' do
|
48
39
|
pod 'OCSlimProject'
|
49
40
|
end
|
50
41
|
```
|
51
|
-
|
52
|
-
* Build the
|
53
|
-
* Launch Fitnesse by running the script
|
54
|
-
* Follow the prompt to download [Fitnesse](http://www.fitnesse.org/FitNesseDownload) to the
|
42
|
+
* Run either ```pod install``` or ```pod update``` as needed
|
43
|
+
* Build the 'AcceptanceTests' target to generate the Application (repeat this after each code change)
|
44
|
+
* Launch Fitnesse by running the script ```./LaunchFitnesse``` that's generated automatically in your project's root directory
|
45
|
+
* Follow the prompt to download [Fitnesse](http://www.fitnesse.org/FitNesseDownload) to the root of your project
|
46
|
+
* Copy the folder at OCSlimProject/Example/FitNesseRoot/OCSlimProjectExamplePage into your project's own FitNesseRoot folder
|
55
47
|
* With Fitnesse running, check out the [example](http://localhost:8080/CocoaSlimExamplePage) provided in Fitnesse.
|
56
48
|
* You're now ready to start writing [Acceptance tests and Fixtures](http://stringerstheory.net/acceptance-testing-with-ios/) in Obj-C or Swift and excercising them with Fitnesse.
|
57
49
|
|
58
|
-
Gotchas
|
59
|
-
=====
|
60
|
-
|
61
|
-
* Return values from Swift fixtures must be explicitly returned as NSString and not String.
|
62
|
-
* Likewise all input values must be explicitly of String types and converted as needed by your fixtures.
|
63
50
|
|
64
51
|
# Acknowledgements
|
65
|
-
The owner of this repository takes no credit for the following included resources (except for the ones credited to the owner). This is a convienient lightweight wrapper
|
52
|
+
The owner of this repository takes no credit for the following included resources (except for the ones credited to the owner). This is a convienient lightweight wrapper either inspired by or using these resources together with some project glue. The aim has been to automate the process of setting up Xcode projects so as to more easily be able to use 'ocslim' and integrate with Fitnesse.
|
53
|
+
|
54
|
+
### Fitnesse
|
55
|
+
Created by: Fitnesse.org
|
56
|
+
|
57
|
+
<http://fitnesse.org>
|
58
|
+
|
59
|
+
### OCSlim, RunTestsTargetWithSlimPort
|
60
|
+
Created by: Erik Meyer, 8th Light
|
61
|
+
|
62
|
+
<https://github.com/ericmeyer/ObjectiveCSlim>
|
63
|
+
|
64
|
+
<https://github.com/dougbradbury/cslim/tree/ocslim>
|
66
65
|
|
67
66
|
### ios-sim
|
67
|
+
Created by: Phonegap
|
68
68
|
|
69
|
-
|
70
|
-
https://github.com/phonegap/ios-sim
|
69
|
+
<https://github.com/phonegap/ios-sim>
|
71
70
|
|
72
71
|
### exportenv.sh
|
72
|
+
Created by: Jon Reid
|
73
73
|
|
74
|
-
|
75
|
-
https://github.com/jonreid/XcodeCoverage
|
74
|
+
<https://github.com/jonreid/XcodeCoverage>
|
76
75
|
|
77
|
-
###
|
76
|
+
### Xcode Project Templates, LaunchFitnesse
|
77
|
+
Created by: Paul Stringer
|
78
78
|
|
79
|
-
|
80
|
-
https://github.com/ericmeyer/ObjectiveCSlim
|
79
|
+
<https://github.com/paulstringer/Slim-iOS-TestRunner>
|
81
80
|
|
82
|
-
|
83
|
-
|
84
|
-
|
81
|
+
|
82
|
+
### License
|
83
|
+
OCSlimProject is available under the MIT license. See the LICENSE file for more info.
|
@@ -7,67 +7,69 @@
|
|
7
7
|
objects = {
|
8
8
|
|
9
9
|
/* Begin PBXBuildFile section */
|
10
|
-
00D7B634331FE09312C886C2682C367C /* StatementExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
11
|
-
01C6E24A25C2E6C50B99A3173A920455 /* cslim-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
12
|
-
039F024F9FCE7F543CCE4308CF354200 /* SlimList.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
1CA2F85439913F7460C8B5806454F3A7 /* Slim.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
19
|
-
21394C07FDB02541F95E3701C1C00381 /* SlimConnectionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
20
|
-
219037F53C3E866F1231252B9B392608 /* SocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
10
|
+
00D7B634331FE09312C886C2682C367C /* StatementExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 531638D4D6A1A52F376C7DCE5E44CA73 /* StatementExecutor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
11
|
+
01C6E24A25C2E6C50B99A3173A920455 /* cslim-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 00AF1392A551B82CFA695F62D692D2FA /* cslim-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
12
|
+
039F024F9FCE7F543CCE4308CF354200 /* SlimList.c in Sources */ = {isa = PBXBuildFile; fileRef = 2FBE8B01B13040F56026D8072E1F1DA5 /* SlimList.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
13
|
+
03EDB396026BFF2CA6BA2DE917E59FEE /* LaunchFitnesse in Resources */ = {isa = PBXBuildFile; fileRef = F2AEB19B6BDE7D08BEC21DB02DFEF80F /* LaunchFitnesse */; };
|
14
|
+
052CC0791906DB8F404C31EBFA0FA13F /* TcpComLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 512F81C925FF44DBE7AA5A3B75B6F306 /* TcpComLink.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
15
|
+
06030B2BC7606CA135A7ACFE30D107AD /* CopyDir.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBA8411449E2910E67B98AB3256117C4 /* CopyDir.swift */; };
|
16
|
+
08F16CFB7A1D55C7B306B192B03F3143 /* Fixtures.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CBA58E14913C9106B61D4705BAFF16A /* Fixtures.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
17
|
+
0E40D6DA62D5E6890E96564C7F815485 /* OCSSymbolDictionary.m in Sources */ = {isa = PBXBuildFile; fileRef = BDA24EDC91178ECF5D584199046B9B70 /* OCSSymbolDictionary.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
18
|
+
1CA2F85439913F7460C8B5806454F3A7 /* Slim.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F04A7D8D3E504C6BB23F35B7C248EA0 /* Slim.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
19
|
+
21394C07FDB02541F95E3701C1C00381 /* SlimConnectionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 066264AD7842785A0CBE302A84F2F346 /* SlimConnectionHandler.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
20
|
+
219037F53C3E866F1231252B9B392608 /* SocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = C20125A718E298C7248A28B4F38427EB /* SocketServer.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
21
21
|
26665B8783EC0970CD065AE573102825 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F8C27DE02B803613FAE65888DDAD26D /* Foundation.framework */; };
|
22
22
|
28F0CBF7788F46BF9F230E7295A275A1 /* cslim.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C50D156E9EFA351EC6E623E358C878FE /* cslim.framework */; };
|
23
23
|
3590AC3BAC9B10FFE89E98055B6F0FEB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F8C27DE02B803613FAE65888DDAD26D /* Foundation.framework */; };
|
24
|
-
35AB0BE641E4A1C1AAC0256AFE4FDB44 /* ListExecutor.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
25
|
-
3975228846A1423C8B2E6D0D08C3DAC5 /* OCSInvocation.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
24
|
+
35AB0BE641E4A1C1AAC0256AFE4FDB44 /* ListExecutor.c in Sources */ = {isa = PBXBuildFile; fileRef = 2331607540B822EC12E7793DBF320036 /* ListExecutor.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
25
|
+
3975228846A1423C8B2E6D0D08C3DAC5 /* OCSInvocation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B569C507327318FC8E0B618DE7E42EE /* OCSInvocation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
26
26
|
4BE25A8D909356B45B163DC2158870F4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F8C27DE02B803613FAE65888DDAD26D /* Foundation.framework */; };
|
27
|
-
53060BC23E0CB71C28275AA761833E4F /* SlimListSerializer.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
28
|
-
54134971F8DBE2443EDCC1ACCAA32978 /* OCSObjectiveCtoCBridge.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
29
|
-
5D37FFF328416B9C3940978B95362753 /* Slim.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
30
|
-
607D0B40C44350F826D130CCA93CC6AD /* SocketServer.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
31
|
-
63811DB46B6249E5C81109F99982EEC7 /* OCSSelector.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
32
|
-
63CF284B0A3DCE5518BDE5BDCD13D71A /* OCSException.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
27
|
+
53060BC23E0CB71C28275AA761833E4F /* SlimListSerializer.c in Sources */ = {isa = PBXBuildFile; fileRef = 0850F1A9ECA5DE27B77BD6286901A6C9 /* SlimListSerializer.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
28
|
+
54134971F8DBE2443EDCC1ACCAA32978 /* OCSObjectiveCtoCBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DE102B4F356E163B01452DFDFBFBAC7 /* OCSObjectiveCtoCBridge.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
29
|
+
5D37FFF328416B9C3940978B95362753 /* Slim.c in Sources */ = {isa = PBXBuildFile; fileRef = 5E4BB909AC9C4BF5E35C75F90376B312 /* Slim.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
30
|
+
607D0B40C44350F826D130CCA93CC6AD /* SocketServer.c in Sources */ = {isa = PBXBuildFile; fileRef = 10099ECA9BE25F22AE7582A48B5B4F6F /* SocketServer.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
31
|
+
63811DB46B6249E5C81109F99982EEC7 /* OCSSelector.h in Headers */ = {isa = PBXBuildFile; fileRef = 3913A3D68BAE40DA2345C9AAE7764F9D /* OCSSelector.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
32
|
+
63CF284B0A3DCE5518BDE5BDCD13D71A /* OCSException.m in Sources */ = {isa = PBXBuildFile; fileRef = D55AA35690DD39C8C0B2BF2759A54A41 /* OCSException.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
33
33
|
67F0325619F3BF660EC24D8F24FF4C0F /* Pods-XCFitDemoTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 876CECD9A83DC1EBD4AB789297F49371 /* Pods-XCFitDemoTests-dummy.m */; };
|
34
|
-
6B91EA7124C95930F29A34F001060BF2 /* OCSMethodCaller.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
34
|
+
6B91EA7124C95930F29A34F001060BF2 /* OCSMethodCaller.m in Sources */ = {isa = PBXBuildFile; fileRef = 226D6976FB9C57EF1697657B559C0AC3 /* OCSMethodCaller.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
35
|
+
6CB9742856DD256AC94F996D9C842DAD /* XCFit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D80E497F135FAE8F9476A4EA93EB332 /* XCFit-dummy.m */; };
|
36
|
+
6F4F4714CC914C534CF2483B402A180C /* SlimUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FAED5CF03240C2C7EACD963A2FCDC62 /* SlimUtil.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
37
|
+
70A40F408D01BD331B67ECE999B18DB1 /* OCSException.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BE81E82DD2F7EF3A81A79F42ADC22CD /* OCSException.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
38
|
+
7206A2A818FF4B8E3009A2FAFC37E65A /* XCFit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 06312644C86F6F62AF5813644A0C9359 /* XCFit-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
39
|
+
720DA7C762D95A01179639F980A82E4A /* SlimListDeserializer.c in Sources */ = {isa = PBXBuildFile; fileRef = 3325D6402B7BCE4474B54055ED106BEE /* SlimListDeserializer.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
39
40
|
76D12407E29F3B94996FFE64216AC4BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F8C27DE02B803613FAE65888DDAD26D /* Foundation.framework */; };
|
40
|
-
7989C4B02CF0BC0A803A2B9180288481 /* StatementExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
41
|
-
|
42
|
-
|
43
|
-
8FE26F10A3EFDE183C4F2D7C192E7AD1 /* OCSSelector.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
44
|
-
95E8CE847B7A865C76F4E9F50E74DCDC /* SlimConnectionHandler.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
45
|
-
965889C1237123B521AD690227344090 /* OCSReturnValue.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
46
|
-
96B919DBE32AA2A6ECC0CECD400157E1 /* cslim-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
47
|
-
|
48
|
-
|
41
|
+
7989C4B02CF0BC0A803A2B9180288481 /* StatementExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 24476E169F67D48CED8A4F2903269E4C /* StatementExecutor.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
42
|
+
7BE14AA744254CF04887009AD2C47BA4 /* OCSInvocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E247854B73C0CEE46C8A7376F13374 /* OCSInvocation.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
43
|
+
89262CB537AD23D1834673B0B6A25FC3 /* ios-sim in Resources */ = {isa = PBXBuildFile; fileRef = F492FB34B9ACBA95D6910D60E5917930 /* ios-sim */; };
|
44
|
+
8FE26F10A3EFDE183C4F2D7C192E7AD1 /* OCSSelector.m in Sources */ = {isa = PBXBuildFile; fileRef = 659EE0FCD3A26384DFFDF745A25FE7AE /* OCSSelector.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
45
|
+
95E8CE847B7A865C76F4E9F50E74DCDC /* SlimConnectionHandler.c in Sources */ = {isa = PBXBuildFile; fileRef = EB6B216350494E169F22427B1E8AAE39 /* SlimConnectionHandler.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
46
|
+
965889C1237123B521AD690227344090 /* OCSReturnValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 450F94B458A08CC4C68FF623CFCDF5F5 /* OCSReturnValue.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
47
|
+
96B919DBE32AA2A6ECC0CECD400157E1 /* cslim-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B31DEA8C00BF1862C52A977EFDFF693 /* cslim-dummy.m */; };
|
48
|
+
992C315354D4C44FB1E0799605A1CAF6 /* RunTestsTargetWithSlimPort in Resources */ = {isa = PBXBuildFile; fileRef = 4FDDEF69DF4621D7082131D261571535 /* RunTestsTargetWithSlimPort */; };
|
49
|
+
9AEA5BBC286EAE1FABA9EC9EBD88E39E /* CliSwift.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F512E1127F3DC24822779F92BF806F4 /* CliSwift.swift */; };
|
50
|
+
9DFEEB8E2E49B6B9B3650849755B92E7 /* OCSSymbolDictionary.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E21D1963E47937E23D632074B1919D /* OCSSymbolDictionary.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
51
|
+
9E2464E2458AD1CAF2EC423ABF80382D /* OCSInstanceCreator.h in Headers */ = {isa = PBXBuildFile; fileRef = E87DD1E3C56FD606564FF5239636846F /* OCSInstanceCreator.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
49
52
|
9E6C1F7342EE80A72F637D8BB641F5AF /* Pods-XCFitAcceptanceTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CD611061A99D7DD2412940619BBDFC80 /* Pods-XCFitAcceptanceTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
50
|
-
A002C1425F615C0F16A16ADC23582240 /* TcpComLink.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
51
|
-
B1C58905EB5401100B12CB9BE87FF795 /* OCSStatementExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
53
|
+
A002C1425F615C0F16A16ADC23582240 /* TcpComLink.c in Sources */ = {isa = PBXBuildFile; fileRef = 0B20EB2FB84F1AEE6148CC1AB09B7F97 /* TcpComLink.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
54
|
+
B1C58905EB5401100B12CB9BE87FF795 /* OCSStatementExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = ADD3E15A1693CBBA63E4BD2200737A91 /* OCSStatementExecutor.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
55
|
+
B1EBF8AB9D7075A1D96D6240651B3302 /* fitnesse-standalone.jar in Resources */ = {isa = PBXBuildFile; fileRef = 9B264CEEDAACAC487D713C28D7060832 /* fitnesse-standalone.jar */; };
|
56
|
+
B235DCF976DEE9F7AB30F63DFB9303BA /* OCSObjectiveCtoCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = DD78EFCEE9F4BC2824B2D76F0B6A5D4C /* OCSObjectiveCtoCBridge.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
57
|
+
B3F6C10A60287CDCE55AB2AC74E5CCF6 /* Fixtures.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FB272EA60418C5CE1272DF466B659C6 /* Fixtures.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
58
|
+
B7924F4FA3944F4DDCF4721790309D53 /* OCSlimToObjectiveCBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 47D5BAF72E5D0C55580326F37F54CC40 /* OCSlimToObjectiveCBridge.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
59
|
+
C348885251136512FC2329DED7A18B6A /* OCSMethodCaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B786A3948678D88B3F5E65876B6DE52 /* OCSMethodCaller.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
60
|
+
C4B512953A79F75F1B1941758BADD8F6 /* OCSInstanceCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F3F8717C7E3BEA88F70F9C8172AFCD /* OCSInstanceCreator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
57
61
|
C5ED0EC3219FBDA0EDE8724653D7F2D9 /* Pods-XCFitAcceptanceTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AD7860C00344C5401C588AE92980D595 /* Pods-XCFitAcceptanceTests-dummy.m */; };
|
58
|
-
C8B46E09C3D0935139DB8BF6BFFB1CC1 /* SlimListSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
59
|
-
|
60
|
-
|
61
|
-
D0BDED65B75F594CA9B3AB553E64C8AF /* SlimList.h in Headers */ = {isa = PBXBuildFile; fileRef =
|
62
|
-
D25C409068006FE9645B728A73AC1744 /* SlimUtil.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
62
|
+
C8B46E09C3D0935139DB8BF6BFFB1CC1 /* SlimListSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = A113E2B50B9761771BFD30E098ACE0C1 /* SlimListSerializer.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
63
|
+
C8C23C9185FBAD9BDE9491820C1D5E0B /* LICENCE.txt in Resources */ = {isa = PBXBuildFile; fileRef = 305C1CB3EB762BF9F2100CBE4726647D /* LICENCE.txt */; };
|
64
|
+
CA8F85C62713FCD8BC91B1B84D1246D7 /* ListExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B71A664564313B35D94E6D56683F2F /* ListExecutor.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
65
|
+
D0BDED65B75F594CA9B3AB553E64C8AF /* SlimList.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BDA146A8332C2437D20820743801F72 /* SlimList.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
66
|
+
D25C409068006FE9645B728A73AC1744 /* SlimUtil.c in Sources */ = {isa = PBXBuildFile; fileRef = EB805B658312C0FC030B18134C44E6B0 /* SlimUtil.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
63
67
|
D4F396263FBA3DF64F319F18BA64490F /* Pods-XCFitDemoTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A77C8DF920999E030F71F82D3C7F08C4 /* Pods-XCFitDemoTests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
64
|
-
D900546ED7A62650ACA2318D284E37FC /* Main.c in Sources */ = {isa = PBXBuildFile; fileRef =
|
65
|
-
DC3389E583347761EF2ECA87767AAA02 /* OCSReturnValue.m in Sources */ = {isa = PBXBuildFile; fileRef =
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
F82A6F6793AD252C0853B61218419DEF /* OCSStatementExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A62B865BB17DB2D73DA66EDF1B7ADC2 /* OCSStatementExecutor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
70
|
-
FA239F0E14FAFE2E9C4FF2C86E073956 /* OCSlimToObjectiveCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0087B60DF170CC622A7152D8142D9F /* OCSlimToObjectiveCBridge.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
68
|
+
D900546ED7A62650ACA2318D284E37FC /* Main.c in Sources */ = {isa = PBXBuildFile; fileRef = 5767F8957D962A51B845ECF832D21344 /* Main.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
69
|
+
DC3389E583347761EF2ECA87767AAA02 /* OCSReturnValue.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5D4EB80CB68EEA6DE3EE23DEC42401 /* OCSReturnValue.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
70
|
+
F17B09BBC6AA45CE9307E3A57C873B2B /* SlimListDeserializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF81DA062FCCD82D9F9571D6BB753E6 /* SlimListDeserializer.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
71
|
+
F82A6F6793AD252C0853B61218419DEF /* OCSStatementExecutor.m in Sources */ = {isa = PBXBuildFile; fileRef = BBEFF2B4C9D78F6C6A96B2531929D533 /* OCSStatementExecutor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; };
|
72
|
+
FA239F0E14FAFE2E9C4FF2C86E073956 /* OCSlimToObjectiveCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = C794886AEF32B88981252E85925229D0 /* OCSlimToObjectiveCBridge.h */; settings = {ATTRIBUTES = (Private, ); }; };
|
71
73
|
/* End PBXBuildFile section */
|
72
74
|
|
73
75
|
/* Begin PBXContainerItemProxy section */
|
@@ -78,18 +80,11 @@
|
|
78
80
|
remoteGlobalIDString = E884ED3E99B4F837DB59B3D47CE32F74;
|
79
81
|
remoteInfo = XCFit;
|
80
82
|
};
|
81
|
-
104A0EB642E3EB4CFC92CEDB9C6D6E68 /* PBXContainerItemProxy */ = {
|
82
|
-
isa = PBXContainerItemProxy;
|
83
|
-
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
|
84
|
-
proxyType = 1;
|
85
|
-
remoteGlobalIDString = A2490FE0A02A27440259CEF12BA442CB;
|
86
|
-
remoteInfo = "XCFit-XCFit";
|
87
|
-
};
|
88
83
|
11ECFDFE375366C414DF8E8317F18F7C /* PBXContainerItemProxy */ = {
|
89
84
|
isa = PBXContainerItemProxy;
|
90
85
|
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
|
91
86
|
proxyType = 1;
|
92
|
-
remoteGlobalIDString =
|
87
|
+
remoteGlobalIDString = 3B4F24EF2D0CD56440755FD6D07164B8;
|
93
88
|
remoteInfo = "OCSlimProject-OCSlimProject";
|
94
89
|
};
|
95
90
|
825A5D4FEBFD4EB096D333EF3F58816E /* PBXContainerItemProxy */ = {
|
@@ -103,7 +98,7 @@
|
|
103
98
|
isa = PBXContainerItemProxy;
|
104
99
|
containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
|
105
100
|
proxyType = 1;
|
106
|
-
remoteGlobalIDString =
|
101
|
+
remoteGlobalIDString = 3B4F24EF2D0CD56440755FD6D07164B8;
|
107
102
|
remoteInfo = "OCSlimProject-OCSlimProject";
|
108
103
|
};
|
109
104
|
B1208FC4173B9266F9BBE216A0182340 /* PBXContainerItemProxy */ = {
|
@@ -130,97 +125,98 @@
|
|
130
125
|
/* End PBXContainerItemProxy section */
|
131
126
|
|
132
127
|
/* Begin PBXFileReference section */
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
128
|
+
00AF1392A551B82CFA695F62D692D2FA /* cslim-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cslim-umbrella.h"; sourceTree = "<group>"; };
|
129
|
+
06312644C86F6F62AF5813644A0C9359 /* XCFit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "XCFit-umbrella.h"; sourceTree = "<group>"; };
|
130
|
+
066264AD7842785A0CBE302A84F2F346 /* SlimConnectionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimConnectionHandler.h; path = include/CSlim/SlimConnectionHandler.h; sourceTree = "<group>"; };
|
131
|
+
0850F1A9ECA5DE27B77BD6286901A6C9 /* SlimListSerializer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimListSerializer.c; path = src/CSlim/SlimListSerializer.c; sourceTree = "<group>"; };
|
132
|
+
0B20EB2FB84F1AEE6148CC1AB09B7F97 /* TcpComLink.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = TcpComLink.c; path = src/Com/TcpComLink.c; sourceTree = "<group>"; };
|
137
133
|
0BAF9BC6423A3471ACF773E278BCF3D8 /* Pods-XCFitDemoTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-XCFitDemoTests-frameworks.sh"; sourceTree = "<group>"; };
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
134
|
+
0BE81E82DD2F7EF3A81A79F42ADC22CD /* OCSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSException.h; path = include/ExecutorObjectiveC/OCSException.h; sourceTree = "<group>"; };
|
135
|
+
0E752DE12D915F1AA80DA4A30A090A29 /* cslim.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = cslim.xcconfig; sourceTree = "<group>"; };
|
136
|
+
10099ECA9BE25F22AE7582A48B5B4F6F /* SocketServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SocketServer.c; path = src/Com/SocketServer.c; sourceTree = "<group>"; };
|
137
|
+
11A174384DA4938F9F4D36C257DCB288 /* Pods_XCFitDemoTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_XCFitDemoTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
138
|
+
11E247854B73C0CEE46C8A7376F13374 /* OCSInvocation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSInvocation.h; path = include/ExecutorObjectiveC/OCSInvocation.h; sourceTree = "<group>"; };
|
139
|
+
184D4A3BB30B3C7FCBA4A3ACA6486B36 /* XCFit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = XCFit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
140
|
+
1B569C507327318FC8E0B618DE7E42EE /* OCSInvocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSInvocation.m; path = src/ExecutorObjectiveC/OCSInvocation.m; sourceTree = "<group>"; };
|
141
|
+
1D13F192C6FFAE28D360C6F900849EDE /* XCFit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = XCFit.xcconfig; sourceTree = "<group>"; };
|
142
|
+
1DE102B4F356E163B01452DFDFBFBAC7 /* OCSObjectiveCtoCBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSObjectiveCtoCBridge.m; path = src/ExecutorObjectiveC/OCSObjectiveCtoCBridge.m; sourceTree = "<group>"; };
|
143
|
+
226D6976FB9C57EF1697657B559C0AC3 /* OCSMethodCaller.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSMethodCaller.m; path = src/ExecutorObjectiveC/OCSMethodCaller.m; sourceTree = "<group>"; };
|
144
|
+
2331607540B822EC12E7793DBF320036 /* ListExecutor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ListExecutor.c; path = src/CSlim/ListExecutor.c; sourceTree = "<group>"; };
|
145
|
+
24476E169F67D48CED8A4F2903269E4C /* StatementExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StatementExecutor.h; path = include/CSlim/StatementExecutor.h; sourceTree = "<group>"; };
|
146
|
+
25E21D1963E47937E23D632074B1919D /* OCSSymbolDictionary.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSSymbolDictionary.h; path = include/ExecutorObjectiveC/OCSSymbolDictionary.h; sourceTree = "<group>"; };
|
147
|
+
2FBE8B01B13040F56026D8072E1F1DA5 /* SlimList.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimList.c; path = src/CSlim/SlimList.c; sourceTree = "<group>"; };
|
148
|
+
305C1CB3EB762BF9F2100CBE4726647D /* LICENCE.txt */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENCE.txt; path = Pod/Support/SharedSupport/LICENCE.txt; sourceTree = "<group>"; };
|
149
|
+
3325D6402B7BCE4474B54055ED106BEE /* SlimListDeserializer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimListDeserializer.c; path = src/CSlim/SlimListDeserializer.c; sourceTree = "<group>"; };
|
150
|
+
36C2A8F1E43FA893B610BACB68EEB4F9 /* cslim.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = cslim.modulemap; sourceTree = "<group>"; };
|
151
|
+
38EBD93C219242332412F56B9527E08C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
152
|
+
3913A3D68BAE40DA2345C9AAE7764F9D /* OCSSelector.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSSelector.h; path = include/ExecutorObjectiveC/OCSSelector.h; sourceTree = "<group>"; };
|
153
|
+
3B31DEA8C00BF1862C52A977EFDFF693 /* cslim-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "cslim-dummy.m"; sourceTree = "<group>"; };
|
154
|
+
3CBA58E14913C9106B61D4705BAFF16A /* Fixtures.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Fixtures.m; path = src/ExecutorObjectiveC/Fixtures.m; sourceTree = "<group>"; };
|
146
155
|
3CD471C260F55907C70BF4E9F0D68B0A /* Pods-XCFitAcceptanceTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-XCFitAcceptanceTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
147
|
-
3D5B4AE20E9B27D55D427EA5209C1FE7 /* Main.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = Main.c; path = fixtures/Main.c; sourceTree = "<group>"; };
|
148
|
-
3DCED3B73458491E5BC993401D7FAE8A /* OCSInvocation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSInvocation.m; path = src/ExecutorObjectiveC/OCSInvocation.m; sourceTree = "<group>"; };
|
149
156
|
40F568505241D2654C78AD8A3FC6E982 /* Pods-XCFitDemoTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-XCFitDemoTests.modulemap"; sourceTree = "<group>"; };
|
150
|
-
|
151
|
-
420AEB320831E6245BCB7BE946B6A033 /* OCSException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSException.h; path = include/ExecutorObjectiveC/OCSException.h; sourceTree = "<group>"; };
|
157
|
+
40FD1075258AC6A29D646286AC1F33BB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
152
158
|
422B33A426962D586E4A8CCA6BD6997E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
153
|
-
|
159
|
+
450F94B458A08CC4C68FF623CFCDF5F5 /* OCSReturnValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSReturnValue.h; path = include/ExecutorObjectiveC/OCSReturnValue.h; sourceTree = "<group>"; };
|
154
160
|
46C42CE57400C015CD88FD204D17BD6B /* Pods-XCFitDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-XCFitDemoTests.debug.xcconfig"; sourceTree = "<group>"; };
|
155
|
-
|
161
|
+
47D5BAF72E5D0C55580326F37F54CC40 /* OCSlimToObjectiveCBridge.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSlimToObjectiveCBridge.m; path = src/ExecutorObjectiveC/OCSlimToObjectiveCBridge.m; sourceTree = "<group>"; };
|
162
|
+
4BDA146A8332C2437D20820743801F72 /* SlimList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimList.h; path = include/CSlim/SlimList.h; sourceTree = "<group>"; };
|
156
163
|
4CDE7A9AC99637BA915B16BE66D53534 /* Pods-XCFitAcceptanceTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-XCFitAcceptanceTests.debug.xcconfig"; sourceTree = "<group>"; };
|
157
164
|
4DFCF9A8D773634F65D82DF796F45A8F /* Pods-XCFitDemoTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-XCFitDemoTests-acknowledgements.plist"; sourceTree = "<group>"; };
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
165
|
+
4E5D4EB80CB68EEA6DE3EE23DEC42401 /* OCSReturnValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSReturnValue.m; path = src/ExecutorObjectiveC/OCSReturnValue.m; sourceTree = "<group>"; };
|
166
|
+
4F512E1127F3DC24822779F92BF806F4 /* CliSwift.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CliSwift.swift; path = XCFit/Classes/CliSwift.swift; sourceTree = "<group>"; };
|
167
|
+
4FDDEF69DF4621D7082131D261571535 /* RunTestsTargetWithSlimPort */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = RunTestsTargetWithSlimPort; path = Pod/Support/iOS/RunTestsTargetWithSlimPort; sourceTree = "<group>"; };
|
168
|
+
512F81C925FF44DBE7AA5A3B75B6F306 /* TcpComLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpComLink.h; path = include/Com/TcpComLink.h; sourceTree = "<group>"; };
|
169
|
+
531638D4D6A1A52F376C7DCE5E44CA73 /* StatementExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = StatementExecutor.m; path = src/ExecutorObjectiveC/StatementExecutor.m; sourceTree = "<group>"; };
|
170
|
+
54F3F8717C7E3BEA88F70F9C8172AFCD /* OCSInstanceCreator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSInstanceCreator.m; path = src/ExecutorObjectiveC/OCSInstanceCreator.m; sourceTree = "<group>"; };
|
171
|
+
5767F8957D962A51B845ECF832D21344 /* Main.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = Main.c; path = fixtures/Main.c; sourceTree = "<group>"; };
|
172
|
+
5B786A3948678D88B3F5E65876B6DE52 /* OCSMethodCaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSMethodCaller.h; path = include/ExecutorObjectiveC/OCSMethodCaller.h; sourceTree = "<group>"; };
|
173
|
+
5D1CB4C5685221FC0F1EC80686836F76 /* XCFit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "XCFit-prefix.pch"; sourceTree = "<group>"; };
|
174
|
+
5E4BB909AC9C4BF5E35C75F90376B312 /* Slim.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = Slim.c; path = src/CSlim/Slim.c; sourceTree = "<group>"; };
|
163
175
|
5F8C27DE02B803613FAE65888DDAD26D /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
|
164
|
-
|
165
|
-
615B23CA036A4D222A3EA6BB404913B2 /* SlimConnectionHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimConnectionHandler.h; path = include/CSlim/SlimConnectionHandler.h; sourceTree = "<group>"; };
|
176
|
+
5FAED5CF03240C2C7EACD963A2FCDC62 /* SlimUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimUtil.h; path = include/CSlim/SlimUtil.h; sourceTree = "<group>"; };
|
166
177
|
62A363AEFCC69BB66737D62B7B10D170 /* Pods-XCFitAcceptanceTests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-XCFitAcceptanceTests-frameworks.sh"; sourceTree = "<group>"; };
|
167
|
-
|
178
|
+
659EE0FCD3A26384DFFDF745A25FE7AE /* OCSSelector.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSSelector.m; path = src/ExecutorObjectiveC/OCSSelector.m; sourceTree = "<group>"; };
|
168
179
|
6A8E3F8A25A8D4ADB72E0E4F79588A7E /* Pods-XCFitAcceptanceTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-XCFitAcceptanceTests.modulemap"; sourceTree = "<group>"; };
|
169
|
-
6B7090A442AA52F17FA0A59D0821D4EC /* cslim-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cslim-umbrella.h"; sourceTree = "<group>"; };
|
170
|
-
6BF83627E0C5A6CCDEA2AF179D2D8D48 /* OCSMethodCaller.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSMethodCaller.h; path = include/ExecutorObjectiveC/OCSMethodCaller.h; sourceTree = "<group>"; };
|
171
|
-
6DD166F2E818F29FAB9B5F4628CE0A19 /* XCFit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "XCFit-umbrella.h"; sourceTree = "<group>"; };
|
172
|
-
6E0087B60DF170CC622A7152D8142D9F /* OCSlimToObjectiveCBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSlimToObjectiveCBridge.h; path = include/ExecutorObjectiveC/OCSlimToObjectiveCBridge.h; sourceTree = "<group>"; };
|
173
180
|
70C6C799435C67059B7DE101E933571C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
174
|
-
|
175
|
-
72042AE8FCCC379264755611B57B6AE1 /* SlimListSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimListSerializer.h; path = include/CSlim/SlimListSerializer.h; sourceTree = "<group>"; };
|
176
|
-
723A75523BADEE438B0FD36393AA9293 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
181
|
+
71BC18DEAB2B7D1CBD0BEE9D66B4F0CD /* ResourceBundle-OCSlimProject-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-OCSlimProject-Info.plist"; sourceTree = "<group>"; };
|
177
182
|
73789F389D457D9FB4BA2D8D4298E7EE /* Pods-XCFitAcceptanceTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-XCFitAcceptanceTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
178
183
|
73B9F5FB4EA4DA37265ABFA12E989976 /* Pods-XCFitAcceptanceTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-XCFitAcceptanceTests-resources.sh"; sourceTree = "<group>"; };
|
179
|
-
|
180
|
-
781B070B9B84DB3B008C6A0CD808B075 /* SlimList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimList.h; path = include/CSlim/SlimList.h; sourceTree = "<group>"; };
|
181
|
-
784E719B0038F222210236D9249ED1D5 /* ResourceBundle-OCSlimProject-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-OCSlimProject-Info.plist"; sourceTree = "<group>"; };
|
182
|
-
7B64E61F2E1B8B4AE72ACAA9F98313EE /* SlimUtil.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimUtil.c; path = src/CSlim/SlimUtil.c; sourceTree = "<group>"; };
|
183
|
-
7DE00D5C82B9D0399EFB80BC08C3419B /* TcpComLink.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = TcpComLink.c; path = src/Com/TcpComLink.c; sourceTree = "<group>"; };
|
184
|
-
82EC99E795CEC77BCAE38C866551C83D /* cslim-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "cslim-dummy.m"; sourceTree = "<group>"; };
|
185
|
-
8345D70BA9662BB0110428FFC1260487 /* SlimConnectionHandler.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimConnectionHandler.c; path = src/CSlim/SlimConnectionHandler.c; sourceTree = "<group>"; };
|
186
|
-
8733EF3416A57B74D937617374BD9AF0 /* ListExecutor.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ListExecutor.c; path = src/CSlim/ListExecutor.c; sourceTree = "<group>"; };
|
184
|
+
7D80E497F135FAE8F9476A4EA93EB332 /* XCFit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "XCFit-dummy.m"; sourceTree = "<group>"; };
|
187
185
|
876CECD9A83DC1EBD4AB789297F49371 /* Pods-XCFitDemoTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-XCFitDemoTests-dummy.m"; sourceTree = "<group>"; };
|
188
|
-
|
189
|
-
8A62B865BB17DB2D73DA66EDF1B7ADC2 /* OCSStatementExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSStatementExecutor.m; path = src/ExecutorObjectiveC/OCSStatementExecutor.m; sourceTree = "<group>"; };
|
190
|
-
8BB9715C803220B394A2E3D3689E4942 /* XCFit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = XCFit.xcconfig; sourceTree = "<group>"; };
|
191
|
-
8C7020DA52FE6549A7F0AEB5B534802A /* OCSlimProject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSlimProject.h; path = Pod/Classes/OCSlimProject.h; sourceTree = "<group>"; };
|
186
|
+
8FB272EA60418C5CE1272DF466B659C6 /* Fixtures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixtures.h; path = include/CSlim/Fixtures.h; sourceTree = "<group>"; };
|
192
187
|
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
A4DC263F3178C703F36D8BD0EBAE227B /* XCFit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = XCFit.modulemap; sourceTree = "<group>"; };
|
198
|
-
A6834CB5BF051984139DAE0E306DE311 /* SocketServer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SocketServer.c; path = src/Com/SocketServer.c; sourceTree = "<group>"; };
|
188
|
+
9B264CEEDAACAC487D713C28D7060832 /* fitnesse-standalone.jar */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = archive.jar; name = "fitnesse-standalone.jar"; path = "Pod/Support/SharedSupport/fitnesse-standalone.jar"; sourceTree = "<group>"; };
|
189
|
+
9BF81DA062FCCD82D9F9571D6BB753E6 /* SlimListDeserializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimListDeserializer.h; path = include/CSlim/SlimListDeserializer.h; sourceTree = "<group>"; };
|
190
|
+
9F04A7D8D3E504C6BB23F35B7C248EA0 /* Slim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Slim.h; path = include/CSlim/Slim.h; sourceTree = "<group>"; };
|
191
|
+
A113E2B50B9761771BFD30E098ACE0C1 /* SlimListSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SlimListSerializer.h; path = include/CSlim/SlimListSerializer.h; sourceTree = "<group>"; };
|
199
192
|
A77C8DF920999E030F71F82D3C7F08C4 /* Pods-XCFitDemoTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-XCFitDemoTests-umbrella.h"; sourceTree = "<group>"; };
|
200
|
-
|
201
|
-
A8CC16BBCD0AAFC343F2377230571168 /* Slim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Slim.h; path = include/CSlim/Slim.h; sourceTree = "<group>"; };
|
202
|
-
AB177668C3F8EA398B4018B5D59C16BC /* SlimListSerializer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimListSerializer.c; path = src/CSlim/SlimListSerializer.c; sourceTree = "<group>"; };
|
203
|
-
AC608BCED5702F7F5B18F3EE60EFF96B /* ResourceBundle-XCFit-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-XCFit-Info.plist"; sourceTree = "<group>"; };
|
204
|
-
AD02B0225705BA2F1CE224F789793486 /* SlimListDeserializer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimListDeserializer.c; path = src/CSlim/SlimListDeserializer.c; sourceTree = "<group>"; };
|
193
|
+
A8B71A664564313B35D94E6D56683F2F /* ListExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ListExecutor.h; path = include/CSlim/ListExecutor.h; sourceTree = "<group>"; };
|
205
194
|
AD7860C00344C5401C588AE92980D595 /* Pods-XCFitAcceptanceTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-XCFitAcceptanceTests-dummy.m"; sourceTree = "<group>"; };
|
195
|
+
ADD3E15A1693CBBA63E4BD2200737A91 /* OCSStatementExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSStatementExecutor.h; path = include/ExecutorObjectiveC/OCSStatementExecutor.h; sourceTree = "<group>"; };
|
206
196
|
AE4401138732BC91F56889BB44EE525A /* Pods-XCFitAcceptanceTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-XCFitAcceptanceTests.release.xcconfig"; sourceTree = "<group>"; };
|
207
|
-
|
197
|
+
B659CA270700A41FB86CBC21E67DE386 /* OCSlimProject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSlimProject.h; path = Pod/Classes/OCSlimProject.h; sourceTree = "<group>"; };
|
198
|
+
BBBDBD7D3045F3B73C1A67EC54676F1E /* Pods_XCFitAcceptanceTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_XCFitAcceptanceTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
199
|
+
BBEFF2B4C9D78F6C6A96B2531929D533 /* OCSStatementExecutor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSStatementExecutor.m; path = src/ExecutorObjectiveC/OCSStatementExecutor.m; sourceTree = "<group>"; };
|
200
|
+
BDA24EDC91178ECF5D584199046B9B70 /* OCSSymbolDictionary.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSSymbolDictionary.m; path = src/ExecutorObjectiveC/OCSSymbolDictionary.m; sourceTree = "<group>"; };
|
201
|
+
BF5ED32C502C67844865F0E19102A71A /* XCFit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = XCFit.modulemap; sourceTree = "<group>"; };
|
202
|
+
C20125A718E298C7248A28B4F38427EB /* SocketServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketServer.h; path = include/Com/SocketServer.h; sourceTree = "<group>"; };
|
208
203
|
C50D156E9EFA351EC6E623E358C878FE /* cslim.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = cslim.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
209
|
-
|
210
|
-
CC56759210DEB466B02399CFE4FA5AE7 /* XCFit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "XCFit-dummy.m"; sourceTree = "<group>"; };
|
204
|
+
C794886AEF32B88981252E85925229D0 /* OCSlimToObjectiveCBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSlimToObjectiveCBridge.h; path = include/ExecutorObjectiveC/OCSlimToObjectiveCBridge.h; sourceTree = "<group>"; };
|
211
205
|
CD611061A99D7DD2412940619BBDFC80 /* Pods-XCFitAcceptanceTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-XCFitAcceptanceTests-umbrella.h"; sourceTree = "<group>"; };
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
206
|
+
D55AA35690DD39C8C0B2BF2759A54A41 /* OCSException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = OCSException.m; path = src/ExecutorObjectiveC/OCSException.m; sourceTree = "<group>"; };
|
207
|
+
DD78EFCEE9F4BC2824B2D76F0B6A5D4C /* OCSObjectiveCtoCBridge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSObjectiveCtoCBridge.h; path = include/ExecutorObjectiveC/OCSObjectiveCtoCBridge.h; sourceTree = "<group>"; };
|
208
|
+
DD986BEFA9466C2BB30137384242BF81 /* cslim.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = cslim.framework; sourceTree = BUILT_PRODUCTS_DIR; };
|
209
|
+
DE3A8DFF79EBB59C8FF5ADF203312188 /* cslim-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cslim-prefix.pch"; sourceTree = "<group>"; };
|
210
|
+
E047B85979A221FE21AA1F099A171EAD /* OCSlimProject.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OCSlimProject.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
|
216
211
|
E0DC45A9D0C36B4E438CD45856B595F9 /* Pods-XCFitDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-XCFitDemoTests.release.xcconfig"; sourceTree = "<group>"; };
|
217
|
-
|
218
|
-
EA53F4B455AA503445C692E623BB594B /* Fixtures.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fixtures.h; path = include/CSlim/Fixtures.h; sourceTree = "<group>"; };
|
212
|
+
E87DD1E3C56FD606564FF5239636846F /* OCSInstanceCreator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OCSInstanceCreator.h; path = include/ExecutorObjectiveC/OCSInstanceCreator.h; sourceTree = "<group>"; };
|
219
213
|
EA67CE733039393BAAA6D8398300DA2D /* Pods-XCFitDemoTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-XCFitDemoTests-acknowledgements.markdown"; sourceTree = "<group>"; };
|
220
|
-
|
214
|
+
EB6B216350494E169F22427B1E8AAE39 /* SlimConnectionHandler.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimConnectionHandler.c; path = src/CSlim/SlimConnectionHandler.c; sourceTree = "<group>"; };
|
215
|
+
EB805B658312C0FC030B18134C44E6B0 /* SlimUtil.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = SlimUtil.c; path = src/CSlim/SlimUtil.c; sourceTree = "<group>"; };
|
216
|
+
EBA8411449E2910E67B98AB3256117C4 /* CopyDir.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CopyDir.swift; path = XCFit/Classes/CopyDir.swift; sourceTree = "<group>"; };
|
221
217
|
ECFFCFA8CCFA2751F9123BAD3E68DDD1 /* Pods-XCFitDemoTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-XCFitDemoTests-resources.sh"; sourceTree = "<group>"; };
|
222
|
-
|
223
|
-
|
218
|
+
F2AEB19B6BDE7D08BEC21DB02DFEF80F /* LaunchFitnesse */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LaunchFitnesse; path = Pod/Support/SharedSupport/LaunchFitnesse; sourceTree = "<group>"; };
|
219
|
+
F492FB34B9ACBA95D6910D60E5917930 /* ios-sim */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "compiled.mach-o.executable"; name = "ios-sim"; path = "Pod/Support/iOS/ios-sim"; sourceTree = "<group>"; };
|
224
220
|
/* End PBXFileReference section */
|
225
221
|
|
226
222
|
/* Begin PBXFrameworksBuildPhase section */
|
@@ -232,13 +228,6 @@
|
|
232
228
|
);
|
233
229
|
runOnlyForDeploymentPostprocessing = 0;
|
234
230
|
};
|
235
|
-
518CCEA38195F4A94329389907A8B079 /* Frameworks */ = {
|
236
|
-
isa = PBXFrameworksBuildPhase;
|
237
|
-
buildActionMask = 2147483647;
|
238
|
-
files = (
|
239
|
-
);
|
240
|
-
runOnlyForDeploymentPostprocessing = 0;
|
241
|
-
};
|
242
231
|
59E42719044BB7ACB6DA6CE15B53FB0D /* Frameworks */ = {
|
243
232
|
isa = PBXFrameworksBuildPhase;
|
244
233
|
buildActionMask = 2147483647;
|
@@ -247,7 +236,7 @@
|
|
247
236
|
);
|
248
237
|
runOnlyForDeploymentPostprocessing = 0;
|
249
238
|
};
|
250
|
-
|
239
|
+
7EE710B8FA6753F1B29FEDEA4275BD04 /* Frameworks */ = {
|
251
240
|
isa = PBXFrameworksBuildPhase;
|
252
241
|
buildActionMask = 2147483647;
|
253
242
|
files = (
|
@@ -292,30 +281,6 @@
|
|
292
281
|
path = "Target Support Files/Pods-XCFitAcceptanceTests";
|
293
282
|
sourceTree = "<group>";
|
294
283
|
};
|
295
|
-
0733AA2AAB99B83B680D0B8D61AF3C11 /* OCSlimProject */ = {
|
296
|
-
isa = PBXGroup;
|
297
|
-
children = (
|
298
|
-
8C7020DA52FE6549A7F0AEB5B534802A /* OCSlimProject.h */,
|
299
|
-
616C2AE9D46F7B6F1C2C84E5440746D8 /* Resources */,
|
300
|
-
BF8E3B17D616AAB0919F0B2D2C343E68 /* Support Files */,
|
301
|
-
);
|
302
|
-
path = OCSlimProject;
|
303
|
-
sourceTree = "<group>";
|
304
|
-
};
|
305
|
-
0F5B651FE35C02F9AA3EA55AE80F13FD /* Support Files */ = {
|
306
|
-
isa = PBXGroup;
|
307
|
-
children = (
|
308
|
-
A4D3505880039557732069B654F0438A /* cslim.modulemap */,
|
309
|
-
221CEC3596A35ACFA585E64F0BA543CB /* cslim.xcconfig */,
|
310
|
-
82EC99E795CEC77BCAE38C866551C83D /* cslim-dummy.m */,
|
311
|
-
DE9A1DD71437FAE23872B6AFD4B0C9F9 /* cslim-prefix.pch */,
|
312
|
-
6B7090A442AA52F17FA0A59D0821D4EC /* cslim-umbrella.h */,
|
313
|
-
181F01033ACD1197830237D44FE6207D /* Info.plist */,
|
314
|
-
);
|
315
|
-
name = "Support Files";
|
316
|
-
path = "../Target Support Files/cslim";
|
317
|
-
sourceTree = "<group>";
|
318
|
-
};
|
319
284
|
10B3DC53BBAE77BBEEAB5A0BC0B01EC0 /* Pods-XCFitDemoTests */ = {
|
320
285
|
isa = PBXGroup;
|
321
286
|
children = (
|
@@ -334,19 +299,6 @@
|
|
334
299
|
path = "Target Support Files/Pods-XCFitDemoTests";
|
335
300
|
sourceTree = "<group>";
|
336
301
|
};
|
337
|
-
2603BD2C1A175E4C3D34676D7950DB10 /* Products */ = {
|
338
|
-
isa = PBXGroup;
|
339
|
-
children = (
|
340
|
-
74AF9C7CE803C390A409365F2C8D9360 /* cslim.framework */,
|
341
|
-
04291F57F7C9F2B80E9D28D233A0CE3E /* OCSlimProject.bundle */,
|
342
|
-
A39E21C429ABBC1C0BD249BE7A74FBA2 /* Pods_XCFitAcceptanceTests.framework */,
|
343
|
-
F1630BBEE7996B4E3260DDFCF1F7808A /* Pods_XCFitDemoTests.framework */,
|
344
|
-
21705FDFC03FD6629188949E529DE866 /* XCFit.bundle */,
|
345
|
-
37B37A818E0B1C06C61BE2CE7B9213D0 /* XCFit.framework */,
|
346
|
-
);
|
347
|
-
name = Products;
|
348
|
-
sourceTree = "<group>";
|
349
|
-
};
|
350
302
|
2DFC789F1B8DA1D062F73545B95934C6 /* iOS */ = {
|
351
303
|
isa = PBXGroup;
|
352
304
|
children = (
|
@@ -355,153 +307,166 @@
|
|
355
307
|
name = iOS;
|
356
308
|
sourceTree = "<group>";
|
357
309
|
};
|
358
|
-
|
310
|
+
394024D664DED171FC8BEF12678BC466 /* Support Files */ = {
|
359
311
|
isa = PBXGroup;
|
360
312
|
children = (
|
361
|
-
|
313
|
+
71BC18DEAB2B7D1CBD0BEE9D66B4F0CD /* ResourceBundle-OCSlimProject-Info.plist */,
|
362
314
|
);
|
363
|
-
|
315
|
+
name = "Support Files";
|
316
|
+
path = "../Target Support Files/OCSlimProject";
|
364
317
|
sourceTree = "<group>";
|
365
318
|
};
|
366
|
-
|
319
|
+
67C32D3D51D20417C4906FA8EE2473E8 /* XCFit */ = {
|
367
320
|
isa = PBXGroup;
|
368
321
|
children = (
|
369
|
-
|
370
|
-
|
371
|
-
|
322
|
+
4F512E1127F3DC24822779F92BF806F4 /* CliSwift.swift */,
|
323
|
+
EBA8411449E2910E67B98AB3256117C4 /* CopyDir.swift */,
|
324
|
+
6D4E41FCCDC72F5FF7B4B81AB6674E7E /* Support Files */,
|
372
325
|
);
|
373
|
-
|
326
|
+
path = XCFit;
|
374
327
|
sourceTree = "<group>";
|
375
328
|
};
|
376
|
-
|
329
|
+
6A14F50FE9305082C3F86EEEBABCC7C4 /* Products */ = {
|
377
330
|
isa = PBXGroup;
|
378
331
|
children = (
|
379
|
-
|
380
|
-
|
332
|
+
DD986BEFA9466C2BB30137384242BF81 /* cslim.framework */,
|
333
|
+
E047B85979A221FE21AA1F099A171EAD /* OCSlimProject.bundle */,
|
334
|
+
BBBDBD7D3045F3B73C1A67EC54676F1E /* Pods_XCFitAcceptanceTests.framework */,
|
335
|
+
11A174384DA4938F9F4D36C257DCB288 /* Pods_XCFitDemoTests.framework */,
|
336
|
+
184D4A3BB30B3C7FCBA4A3ACA6486B36 /* XCFit.framework */,
|
381
337
|
);
|
382
|
-
name =
|
338
|
+
name = Products;
|
383
339
|
sourceTree = "<group>";
|
384
340
|
};
|
385
|
-
|
341
|
+
6C4639460690AF91E87AEA9FCAB34CBF /* cslim */ = {
|
386
342
|
isa = PBXGroup;
|
387
343
|
children = (
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
344
|
+
8FB272EA60418C5CE1272DF466B659C6 /* Fixtures.h */,
|
345
|
+
3CBA58E14913C9106B61D4705BAFF16A /* Fixtures.m */,
|
346
|
+
2331607540B822EC12E7793DBF320036 /* ListExecutor.c */,
|
347
|
+
A8B71A664564313B35D94E6D56683F2F /* ListExecutor.h */,
|
348
|
+
5767F8957D962A51B845ECF832D21344 /* Main.c */,
|
349
|
+
0BE81E82DD2F7EF3A81A79F42ADC22CD /* OCSException.h */,
|
350
|
+
D55AA35690DD39C8C0B2BF2759A54A41 /* OCSException.m */,
|
351
|
+
E87DD1E3C56FD606564FF5239636846F /* OCSInstanceCreator.h */,
|
352
|
+
54F3F8717C7E3BEA88F70F9C8172AFCD /* OCSInstanceCreator.m */,
|
353
|
+
11E247854B73C0CEE46C8A7376F13374 /* OCSInvocation.h */,
|
354
|
+
1B569C507327318FC8E0B618DE7E42EE /* OCSInvocation.m */,
|
355
|
+
C794886AEF32B88981252E85925229D0 /* OCSlimToObjectiveCBridge.h */,
|
356
|
+
47D5BAF72E5D0C55580326F37F54CC40 /* OCSlimToObjectiveCBridge.m */,
|
357
|
+
5B786A3948678D88B3F5E65876B6DE52 /* OCSMethodCaller.h */,
|
358
|
+
226D6976FB9C57EF1697657B559C0AC3 /* OCSMethodCaller.m */,
|
359
|
+
DD78EFCEE9F4BC2824B2D76F0B6A5D4C /* OCSObjectiveCtoCBridge.h */,
|
360
|
+
1DE102B4F356E163B01452DFDFBFBAC7 /* OCSObjectiveCtoCBridge.m */,
|
361
|
+
450F94B458A08CC4C68FF623CFCDF5F5 /* OCSReturnValue.h */,
|
362
|
+
4E5D4EB80CB68EEA6DE3EE23DEC42401 /* OCSReturnValue.m */,
|
363
|
+
3913A3D68BAE40DA2345C9AAE7764F9D /* OCSSelector.h */,
|
364
|
+
659EE0FCD3A26384DFFDF745A25FE7AE /* OCSSelector.m */,
|
365
|
+
ADD3E15A1693CBBA63E4BD2200737A91 /* OCSStatementExecutor.h */,
|
366
|
+
BBEFF2B4C9D78F6C6A96B2531929D533 /* OCSStatementExecutor.m */,
|
367
|
+
25E21D1963E47937E23D632074B1919D /* OCSSymbolDictionary.h */,
|
368
|
+
BDA24EDC91178ECF5D584199046B9B70 /* OCSSymbolDictionary.m */,
|
369
|
+
5E4BB909AC9C4BF5E35C75F90376B312 /* Slim.c */,
|
370
|
+
9F04A7D8D3E504C6BB23F35B7C248EA0 /* Slim.h */,
|
371
|
+
EB6B216350494E169F22427B1E8AAE39 /* SlimConnectionHandler.c */,
|
372
|
+
066264AD7842785A0CBE302A84F2F346 /* SlimConnectionHandler.h */,
|
373
|
+
2FBE8B01B13040F56026D8072E1F1DA5 /* SlimList.c */,
|
374
|
+
4BDA146A8332C2437D20820743801F72 /* SlimList.h */,
|
375
|
+
3325D6402B7BCE4474B54055ED106BEE /* SlimListDeserializer.c */,
|
376
|
+
9BF81DA062FCCD82D9F9571D6BB753E6 /* SlimListDeserializer.h */,
|
377
|
+
0850F1A9ECA5DE27B77BD6286901A6C9 /* SlimListSerializer.c */,
|
378
|
+
A113E2B50B9761771BFD30E098ACE0C1 /* SlimListSerializer.h */,
|
379
|
+
EB805B658312C0FC030B18134C44E6B0 /* SlimUtil.c */,
|
380
|
+
5FAED5CF03240C2C7EACD963A2FCDC62 /* SlimUtil.h */,
|
381
|
+
10099ECA9BE25F22AE7582A48B5B4F6F /* SocketServer.c */,
|
382
|
+
C20125A718E298C7248A28B4F38427EB /* SocketServer.h */,
|
383
|
+
24476E169F67D48CED8A4F2903269E4C /* StatementExecutor.h */,
|
384
|
+
531638D4D6A1A52F376C7DCE5E44CA73 /* StatementExecutor.m */,
|
385
|
+
0B20EB2FB84F1AEE6148CC1AB09B7F97 /* TcpComLink.c */,
|
386
|
+
512F81C925FF44DBE7AA5A3B75B6F306 /* TcpComLink.h */,
|
387
|
+
835E33E5F406771E4D25CCD8BF887F62 /* Support Files */,
|
432
388
|
);
|
433
389
|
path = cslim;
|
434
390
|
sourceTree = "<group>";
|
435
391
|
};
|
436
|
-
|
392
|
+
6D4E41FCCDC72F5FF7B4B81AB6674E7E /* Support Files */ = {
|
437
393
|
isa = PBXGroup;
|
438
394
|
children = (
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
395
|
+
40FD1075258AC6A29D646286AC1F33BB /* Info.plist */,
|
396
|
+
BF5ED32C502C67844865F0E19102A71A /* XCFit.modulemap */,
|
397
|
+
1D13F192C6FFAE28D360C6F900849EDE /* XCFit.xcconfig */,
|
398
|
+
7D80E497F135FAE8F9476A4EA93EB332 /* XCFit-dummy.m */,
|
399
|
+
5D1CB4C5685221FC0F1EC80686836F76 /* XCFit-prefix.pch */,
|
400
|
+
06312644C86F6F62AF5813644A0C9359 /* XCFit-umbrella.h */,
|
445
401
|
);
|
402
|
+
name = "Support Files";
|
403
|
+
path = "../Target Support Files/XCFit";
|
446
404
|
sourceTree = "<group>";
|
447
405
|
};
|
448
|
-
|
406
|
+
6E395B4D7673440ADEE0A1576D94B0D5 /* Targets Support Files */ = {
|
449
407
|
isa = PBXGroup;
|
450
408
|
children = (
|
451
|
-
|
452
|
-
|
409
|
+
048A9514752E9D8E1D27EF998A60166E /* Pods-XCFitAcceptanceTests */,
|
410
|
+
10B3DC53BBAE77BBEEAB5A0BC0B01EC0 /* Pods-XCFitDemoTests */,
|
453
411
|
);
|
454
|
-
name =
|
412
|
+
name = "Targets Support Files";
|
455
413
|
sourceTree = "<group>";
|
456
414
|
};
|
457
|
-
|
415
|
+
7DB346D0F39D3F0E887471402A8071AB = {
|
458
416
|
isa = PBXGroup;
|
459
417
|
children = (
|
460
|
-
|
418
|
+
93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
|
419
|
+
FF99D65E1612D97894EFB2EB3DF4BC60 /* Frameworks */,
|
420
|
+
B42C4E6C55879E655C11B3685B31D6EE /* Pods */,
|
421
|
+
6A14F50FE9305082C3F86EEEBABCC7C4 /* Products */,
|
422
|
+
6E395B4D7673440ADEE0A1576D94B0D5 /* Targets Support Files */,
|
461
423
|
);
|
462
|
-
name = "Support Files";
|
463
|
-
path = "../Target Support Files/OCSlimProject";
|
464
424
|
sourceTree = "<group>";
|
465
425
|
};
|
466
|
-
|
426
|
+
835E33E5F406771E4D25CCD8BF887F62 /* Support Files */ = {
|
467
427
|
isa = PBXGroup;
|
468
428
|
children = (
|
469
|
-
|
470
|
-
|
429
|
+
36C2A8F1E43FA893B610BACB68EEB4F9 /* cslim.modulemap */,
|
430
|
+
0E752DE12D915F1AA80DA4A30A090A29 /* cslim.xcconfig */,
|
431
|
+
3B31DEA8C00BF1862C52A977EFDFF693 /* cslim-dummy.m */,
|
432
|
+
DE3A8DFF79EBB59C8FF5ADF203312188 /* cslim-prefix.pch */,
|
433
|
+
00AF1392A551B82CFA695F62D692D2FA /* cslim-umbrella.h */,
|
434
|
+
38EBD93C219242332412F56B9527E08C /* Info.plist */,
|
471
435
|
);
|
472
|
-
name =
|
473
|
-
path =
|
436
|
+
name = "Support Files";
|
437
|
+
path = "../Target Support Files/cslim";
|
474
438
|
sourceTree = "<group>";
|
475
439
|
};
|
476
|
-
|
440
|
+
B42C4E6C55879E655C11B3685B31D6EE /* Pods */ = {
|
477
441
|
isa = PBXGroup;
|
478
442
|
children = (
|
479
|
-
|
443
|
+
6C4639460690AF91E87AEA9FCAB34CBF /* cslim */,
|
444
|
+
B918D81AD0834981FAFE2317BE24E454 /* OCSlimProject */,
|
445
|
+
67C32D3D51D20417C4906FA8EE2473E8 /* XCFit */,
|
480
446
|
);
|
481
|
-
|
447
|
+
name = Pods;
|
482
448
|
sourceTree = "<group>";
|
483
449
|
};
|
484
|
-
|
450
|
+
B918D81AD0834981FAFE2317BE24E454 /* OCSlimProject */ = {
|
485
451
|
isa = PBXGroup;
|
486
452
|
children = (
|
487
|
-
|
453
|
+
B659CA270700A41FB86CBC21E67DE386 /* OCSlimProject.h */,
|
454
|
+
C11B2727A1465D2981A849698295CF0D /* Resources */,
|
455
|
+
394024D664DED171FC8BEF12678BC466 /* Support Files */,
|
488
456
|
);
|
489
|
-
|
457
|
+
path = OCSlimProject;
|
490
458
|
sourceTree = "<group>";
|
491
459
|
};
|
492
|
-
|
460
|
+
C11B2727A1465D2981A849698295CF0D /* Resources */ = {
|
493
461
|
isa = PBXGroup;
|
494
462
|
children = (
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
EEC23C025868EED54EC22D1CB5DB49A6 /* XCFit-prefix.pch */,
|
501
|
-
6DD166F2E818F29FAB9B5F4628CE0A19 /* XCFit-umbrella.h */,
|
463
|
+
9B264CEEDAACAC487D713C28D7060832 /* fitnesse-standalone.jar */,
|
464
|
+
F492FB34B9ACBA95D6910D60E5917930 /* ios-sim */,
|
465
|
+
F2AEB19B6BDE7D08BEC21DB02DFEF80F /* LaunchFitnesse */,
|
466
|
+
305C1CB3EB762BF9F2100CBE4726647D /* LICENCE.txt */,
|
467
|
+
4FDDEF69DF4621D7082131D261571535 /* RunTestsTargetWithSlimPort */,
|
502
468
|
);
|
503
|
-
name =
|
504
|
-
path = "XCFitDemo/Pods/Target Support Files/XCFit";
|
469
|
+
name = Resources;
|
505
470
|
sourceTree = "<group>";
|
506
471
|
};
|
507
472
|
FF99D65E1612D97894EFB2EB3DF4BC60 /* Frameworks */ = {
|
@@ -572,21 +537,21 @@
|
|
572
537
|
/* End PBXHeadersBuildPhase section */
|
573
538
|
|
574
539
|
/* Begin PBXNativeTarget section */
|
575
|
-
|
540
|
+
3B4F24EF2D0CD56440755FD6D07164B8 /* OCSlimProject-OCSlimProject */ = {
|
576
541
|
isa = PBXNativeTarget;
|
577
|
-
buildConfigurationList =
|
542
|
+
buildConfigurationList = 18160617C0E49202EFFDA8B5AEE18056 /* Build configuration list for PBXNativeTarget "OCSlimProject-OCSlimProject" */;
|
578
543
|
buildPhases = (
|
579
|
-
|
580
|
-
|
581
|
-
|
544
|
+
71836594983ABA46BC301601A5729CAA /* Sources */,
|
545
|
+
7EE710B8FA6753F1B29FEDEA4275BD04 /* Frameworks */,
|
546
|
+
927BD4F30E55DC26A65F94871AA9D618 /* Resources */,
|
582
547
|
);
|
583
548
|
buildRules = (
|
584
549
|
);
|
585
550
|
dependencies = (
|
586
551
|
);
|
587
|
-
name = "
|
588
|
-
productName = "
|
589
|
-
productReference =
|
552
|
+
name = "OCSlimProject-OCSlimProject";
|
553
|
+
productName = "OCSlimProject-OCSlimProject";
|
554
|
+
productReference = E047B85979A221FE21AA1F099A171EAD /* OCSlimProject.bundle */;
|
590
555
|
productType = "com.apple.product-type.bundle";
|
591
556
|
};
|
592
557
|
A3F45E9B3971B4778A309B715D9F3ACD /* Pods-XCFitDemoTests */ = {
|
@@ -606,7 +571,7 @@
|
|
606
571
|
);
|
607
572
|
name = "Pods-XCFitDemoTests";
|
608
573
|
productName = "Pods-XCFitDemoTests";
|
609
|
-
productReference =
|
574
|
+
productReference = 11A174384DA4938F9F4D36C257DCB288 /* Pods_XCFitDemoTests.framework */;
|
610
575
|
productType = "com.apple.product-type.framework";
|
611
576
|
};
|
612
577
|
BA9D1153E68E6CC71B58FB63ABC04A40 /* Pods-XCFitAcceptanceTests */ = {
|
@@ -626,44 +591,25 @@
|
|
626
591
|
);
|
627
592
|
name = "Pods-XCFitAcceptanceTests";
|
628
593
|
productName = "Pods-XCFitAcceptanceTests";
|
629
|
-
productReference =
|
594
|
+
productReference = BBBDBD7D3045F3B73C1A67EC54676F1E /* Pods_XCFitAcceptanceTests.framework */;
|
630
595
|
productType = "com.apple.product-type.framework";
|
631
596
|
};
|
632
|
-
C419C443462CE8418AA9349181BE2BE7 /* OCSlimProject-OCSlimProject */ = {
|
633
|
-
isa = PBXNativeTarget;
|
634
|
-
buildConfigurationList = 6A54F4788775190846DD9306CC571EB1 /* Build configuration list for PBXNativeTarget "OCSlimProject-OCSlimProject" */;
|
635
|
-
buildPhases = (
|
636
|
-
009C3A5BF25CFFF36E632CCB299DD7B0 /* Sources */,
|
637
|
-
518CCEA38195F4A94329389907A8B079 /* Frameworks */,
|
638
|
-
E7AF2204FC8B433415E8E8C7CE491CE3 /* Resources */,
|
639
|
-
);
|
640
|
-
buildRules = (
|
641
|
-
);
|
642
|
-
dependencies = (
|
643
|
-
);
|
644
|
-
name = "OCSlimProject-OCSlimProject";
|
645
|
-
productName = "OCSlimProject-OCSlimProject";
|
646
|
-
productReference = 04291F57F7C9F2B80E9D28D233A0CE3E /* OCSlimProject.bundle */;
|
647
|
-
productType = "com.apple.product-type.bundle";
|
648
|
-
};
|
649
597
|
E884ED3E99B4F837DB59B3D47CE32F74 /* XCFit */ = {
|
650
598
|
isa = PBXNativeTarget;
|
651
599
|
buildConfigurationList = 86D6CA44B2860A3F30E7541A8E5F739C /* Build configuration list for PBXNativeTarget "XCFit" */;
|
652
600
|
buildPhases = (
|
653
|
-
|
601
|
+
5B1EC8A83D2D87ABB26A635B15A69DFC /* Sources */,
|
654
602
|
B721F5774DF596BED997C5F225E749FA /* Frameworks */,
|
655
|
-
919EEFCF675E894F5EEEAEEAD8C36F7D /* Resources */,
|
656
603
|
0BB2699832583DC1F6752CF56EFC9A99 /* Headers */,
|
657
604
|
);
|
658
605
|
buildRules = (
|
659
606
|
);
|
660
607
|
dependencies = (
|
661
|
-
1CF4EB18F58394F97F4D39CE7FE67A7C /* PBXTargetDependency */,
|
662
608
|
1F54F8A4400D270AADE274F34D399D08 /* PBXTargetDependency */,
|
663
609
|
);
|
664
610
|
name = XCFit;
|
665
611
|
productName = XCFit;
|
666
|
-
productReference =
|
612
|
+
productReference = 184D4A3BB30B3C7FCBA4A3ACA6486B36 /* XCFit.framework */;
|
667
613
|
productType = "com.apple.product-type.framework";
|
668
614
|
};
|
669
615
|
F673226E2D7E7F7C729F273DD77C1B28 /* cslim */ = {
|
@@ -680,7 +626,7 @@
|
|
680
626
|
);
|
681
627
|
name = cslim;
|
682
628
|
productName = cslim;
|
683
|
-
productReference =
|
629
|
+
productReference = DD986BEFA9466C2BB30137384242BF81 /* cslim.framework */;
|
684
630
|
productType = "com.apple.product-type.framework";
|
685
631
|
};
|
686
632
|
/* End PBXNativeTarget section */
|
@@ -700,56 +646,35 @@
|
|
700
646
|
en,
|
701
647
|
);
|
702
648
|
mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
|
703
|
-
productRefGroup =
|
649
|
+
productRefGroup = 6A14F50FE9305082C3F86EEEBABCC7C4 /* Products */;
|
704
650
|
projectDirPath = "";
|
705
651
|
projectRoot = "";
|
706
652
|
targets = (
|
707
653
|
F673226E2D7E7F7C729F273DD77C1B28 /* cslim */,
|
708
|
-
|
654
|
+
3B4F24EF2D0CD56440755FD6D07164B8 /* OCSlimProject-OCSlimProject */,
|
709
655
|
BA9D1153E68E6CC71B58FB63ABC04A40 /* Pods-XCFitAcceptanceTests */,
|
710
656
|
A3F45E9B3971B4778A309B715D9F3ACD /* Pods-XCFitDemoTests */,
|
711
657
|
E884ED3E99B4F837DB59B3D47CE32F74 /* XCFit */,
|
712
|
-
A2490FE0A02A27440259CEF12BA442CB /* XCFit-XCFit */,
|
713
658
|
);
|
714
659
|
};
|
715
660
|
/* End PBXProject section */
|
716
661
|
|
717
662
|
/* Begin PBXResourcesBuildPhase section */
|
718
|
-
|
663
|
+
927BD4F30E55DC26A65F94871AA9D618 /* Resources */ = {
|
719
664
|
isa = PBXResourcesBuildPhase;
|
720
665
|
buildActionMask = 2147483647;
|
721
666
|
files = (
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
buildActionMask = 2147483647;
|
728
|
-
files = (
|
729
|
-
E3CF958856EACED5197E3D016778E971 /* XCFit.bundle in Resources */,
|
730
|
-
);
|
731
|
-
runOnlyForDeploymentPostprocessing = 0;
|
732
|
-
};
|
733
|
-
E7AF2204FC8B433415E8E8C7CE491CE3 /* Resources */ = {
|
734
|
-
isa = PBXResourcesBuildPhase;
|
735
|
-
buildActionMask = 2147483647;
|
736
|
-
files = (
|
737
|
-
EAC99D9B3EB07694BECA5AAB4A12A0D4 /* ios-sim in Resources */,
|
738
|
-
7AF61081BCCDFFD4B066820FA7C517C9 /* LaunchFitnesse in Resources */,
|
739
|
-
CEB9146CDCC2AFC690301DC477826216 /* RunTestsTargetWithSlimPort in Resources */,
|
667
|
+
B1EBF8AB9D7075A1D96D6240651B3302 /* fitnesse-standalone.jar in Resources */,
|
668
|
+
89262CB537AD23D1834673B0B6A25FC3 /* ios-sim in Resources */,
|
669
|
+
03EDB396026BFF2CA6BA2DE917E59FEE /* LaunchFitnesse in Resources */,
|
670
|
+
C8C23C9185FBAD9BDE9491820C1D5E0B /* LICENCE.txt in Resources */,
|
671
|
+
992C315354D4C44FB1E0799605A1CAF6 /* RunTestsTargetWithSlimPort in Resources */,
|
740
672
|
);
|
741
673
|
runOnlyForDeploymentPostprocessing = 0;
|
742
674
|
};
|
743
675
|
/* End PBXResourcesBuildPhase section */
|
744
676
|
|
745
677
|
/* Begin PBXSourcesBuildPhase section */
|
746
|
-
009C3A5BF25CFFF36E632CCB299DD7B0 /* Sources */ = {
|
747
|
-
isa = PBXSourcesBuildPhase;
|
748
|
-
buildActionMask = 2147483647;
|
749
|
-
files = (
|
750
|
-
);
|
751
|
-
runOnlyForDeploymentPostprocessing = 0;
|
752
|
-
};
|
753
678
|
31D3C6B8D59AED644AE9878FA3777A21 /* Sources */ = {
|
754
679
|
isa = PBXSourcesBuildPhase;
|
755
680
|
buildActionMask = 2147483647;
|
@@ -758,19 +683,20 @@
|
|
758
683
|
);
|
759
684
|
runOnlyForDeploymentPostprocessing = 0;
|
760
685
|
};
|
761
|
-
|
686
|
+
5B1EC8A83D2D87ABB26A635B15A69DFC /* Sources */ = {
|
762
687
|
isa = PBXSourcesBuildPhase;
|
763
688
|
buildActionMask = 2147483647;
|
764
689
|
files = (
|
690
|
+
9AEA5BBC286EAE1FABA9EC9EBD88E39E /* CliSwift.swift in Sources */,
|
691
|
+
06030B2BC7606CA135A7ACFE30D107AD /* CopyDir.swift in Sources */,
|
692
|
+
6CB9742856DD256AC94F996D9C842DAD /* XCFit-dummy.m in Sources */,
|
765
693
|
);
|
766
694
|
runOnlyForDeploymentPostprocessing = 0;
|
767
695
|
};
|
768
|
-
|
696
|
+
71836594983ABA46BC301601A5729CAA /* Sources */ = {
|
769
697
|
isa = PBXSourcesBuildPhase;
|
770
698
|
buildActionMask = 2147483647;
|
771
699
|
files = (
|
772
|
-
197F79D7A0288524C41AAC4652C98887 /* ReplaceMe.swift in Sources */,
|
773
|
-
0DA6749E607D259AB82B49296FFE7DCE /* XCFit-dummy.m in Sources */,
|
774
700
|
);
|
775
701
|
runOnlyForDeploymentPostprocessing = 0;
|
776
702
|
};
|
@@ -818,7 +744,7 @@
|
|
818
744
|
00FD23E0267D5FE3D4A474C5CAA21B59 /* PBXTargetDependency */ = {
|
819
745
|
isa = PBXTargetDependency;
|
820
746
|
name = "OCSlimProject-OCSlimProject";
|
821
|
-
target =
|
747
|
+
target = 3B4F24EF2D0CD56440755FD6D07164B8 /* OCSlimProject-OCSlimProject */;
|
822
748
|
targetProxy = 11ECFDFE375366C414DF8E8317F18F7C /* PBXContainerItemProxy */;
|
823
749
|
};
|
824
750
|
07D502926467C748E6BD965F358ECC5B /* PBXTargetDependency */ = {
|
@@ -827,12 +753,6 @@
|
|
827
753
|
target = F673226E2D7E7F7C729F273DD77C1B28 /* cslim */;
|
828
754
|
targetProxy = BD2F9E829B3192BC1E3A4C94DED08C58 /* PBXContainerItemProxy */;
|
829
755
|
};
|
830
|
-
1CF4EB18F58394F97F4D39CE7FE67A7C /* PBXTargetDependency */ = {
|
831
|
-
isa = PBXTargetDependency;
|
832
|
-
name = "XCFit-XCFit";
|
833
|
-
target = A2490FE0A02A27440259CEF12BA442CB /* XCFit-XCFit */;
|
834
|
-
targetProxy = 104A0EB642E3EB4CFC92CEDB9C6D6E68 /* PBXContainerItemProxy */;
|
835
|
-
};
|
836
756
|
1F54F8A4400D270AADE274F34D399D08 /* PBXTargetDependency */ = {
|
837
757
|
isa = PBXTargetDependency;
|
838
758
|
name = cslim;
|
@@ -842,7 +762,7 @@
|
|
842
762
|
900DD174D973DF5D758127AAFF79A685 /* PBXTargetDependency */ = {
|
843
763
|
isa = PBXTargetDependency;
|
844
764
|
name = "OCSlimProject-OCSlimProject";
|
845
|
-
target =
|
765
|
+
target = 3B4F24EF2D0CD56440755FD6D07164B8 /* OCSlimProject-OCSlimProject */;
|
846
766
|
targetProxy = A33FCFE3FECF7842E6A75D7AD4C2F832 /* PBXContainerItemProxy */;
|
847
767
|
};
|
848
768
|
A339BAA9825F10EB99F89FBEF2F4379B /* PBXTargetDependency */ = {
|
@@ -868,7 +788,7 @@
|
|
868
788
|
/* Begin XCBuildConfiguration section */
|
869
789
|
1FCDED08556259E6F56794DA451B868C /* Release */ = {
|
870
790
|
isa = XCBuildConfiguration;
|
871
|
-
baseConfigurationReference =
|
791
|
+
baseConfigurationReference = 1D13F192C6FFAE28D360C6F900849EDE /* XCFit.xcconfig */;
|
872
792
|
buildSettings = {
|
873
793
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
874
794
|
CURRENT_PROJECT_VERSION = 1;
|
@@ -895,22 +815,6 @@
|
|
895
815
|
};
|
896
816
|
name = Release;
|
897
817
|
};
|
898
|
-
33B7B11BEF268EFCFA31253F1C4A6759 /* Debug */ = {
|
899
|
-
isa = XCBuildConfiguration;
|
900
|
-
buildSettings = {
|
901
|
-
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/OCSlimProject";
|
902
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
903
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
904
|
-
INFOPLIST_FILE = "Target Support Files/OCSlimProject/ResourceBundle-OCSlimProject-Info.plist";
|
905
|
-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
906
|
-
PRODUCT_NAME = OCSlimProject;
|
907
|
-
SDKROOT = iphoneos;
|
908
|
-
SKIP_INSTALL = YES;
|
909
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
910
|
-
WRAPPER_EXTENSION = bundle;
|
911
|
-
};
|
912
|
-
name = Debug;
|
913
|
-
};
|
914
818
|
345208F9D9CC1B581540E92CDEA801CA /* Debug */ = {
|
915
819
|
isa = XCBuildConfiguration;
|
916
820
|
baseConfigurationReference = 4CDE7A9AC99637BA915B16BE66D53534 /* Pods-XCFitAcceptanceTests.debug.xcconfig */;
|
@@ -1012,7 +916,23 @@
|
|
1012
916
|
};
|
1013
917
|
name = Debug;
|
1014
918
|
};
|
1015
|
-
|
919
|
+
6D5670708A567F2AE1FC3688495637D8 /* Debug */ = {
|
920
|
+
isa = XCBuildConfiguration;
|
921
|
+
buildSettings = {
|
922
|
+
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/OCSlimProject";
|
923
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
924
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
925
|
+
INFOPLIST_FILE = "Target Support Files/OCSlimProject/ResourceBundle-OCSlimProject-Info.plist";
|
926
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
927
|
+
PRODUCT_NAME = OCSlimProject;
|
928
|
+
SDKROOT = iphoneos;
|
929
|
+
SKIP_INSTALL = YES;
|
930
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
931
|
+
WRAPPER_EXTENSION = bundle;
|
932
|
+
};
|
933
|
+
name = Debug;
|
934
|
+
};
|
935
|
+
6F6B83D7576AA72B154B27948D69F09D /* Release */ = {
|
1016
936
|
isa = XCBuildConfiguration;
|
1017
937
|
buildSettings = {
|
1018
938
|
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/OCSlimProject";
|
@@ -1072,7 +992,7 @@
|
|
1072
992
|
};
|
1073
993
|
91308FB6058F8A3CD4D449FBFD909B34 /* Release */ = {
|
1074
994
|
isa = XCBuildConfiguration;
|
1075
|
-
baseConfigurationReference =
|
995
|
+
baseConfigurationReference = 0E752DE12D915F1AA80DA4A30A090A29 /* cslim.xcconfig */;
|
1076
996
|
buildSettings = {
|
1077
997
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
1078
998
|
CURRENT_PROJECT_VERSION = 1;
|
@@ -1101,7 +1021,7 @@
|
|
1101
1021
|
};
|
1102
1022
|
9A7D23FC27BE27A61D211017F2A75EE7 /* Debug */ = {
|
1103
1023
|
isa = XCBuildConfiguration;
|
1104
|
-
baseConfigurationReference =
|
1024
|
+
baseConfigurationReference = 1D13F192C6FFAE28D360C6F900849EDE /* XCFit.xcconfig */;
|
1105
1025
|
buildSettings = {
|
1106
1026
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
1107
1027
|
CURRENT_PROJECT_VERSION = 1;
|
@@ -1129,26 +1049,9 @@
|
|
1129
1049
|
};
|
1130
1050
|
name = Debug;
|
1131
1051
|
};
|
1132
|
-
A8EC1741BE19764170783E9CF27C1F30 /* Debug */ = {
|
1133
|
-
isa = XCBuildConfiguration;
|
1134
|
-
baseConfigurationReference = 8BB9715C803220B394A2E3D3689E4942 /* XCFit.xcconfig */;
|
1135
|
-
buildSettings = {
|
1136
|
-
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/XCFit";
|
1137
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
1138
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
1139
|
-
INFOPLIST_FILE = "Target Support Files/XCFit/ResourceBundle-XCFit-Info.plist";
|
1140
|
-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
1141
|
-
PRODUCT_NAME = XCFit;
|
1142
|
-
SDKROOT = iphoneos;
|
1143
|
-
SKIP_INSTALL = YES;
|
1144
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
1145
|
-
WRAPPER_EXTENSION = bundle;
|
1146
|
-
};
|
1147
|
-
name = Debug;
|
1148
|
-
};
|
1149
1052
|
BD49FABE1DF6395906069D1E2700FA6B /* Debug */ = {
|
1150
1053
|
isa = XCBuildConfiguration;
|
1151
|
-
baseConfigurationReference =
|
1054
|
+
baseConfigurationReference = 0E752DE12D915F1AA80DA4A30A090A29 /* cslim.xcconfig */;
|
1152
1055
|
buildSettings = {
|
1153
1056
|
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
1154
1057
|
CURRENT_PROJECT_VERSION = 1;
|
@@ -1208,23 +1111,6 @@
|
|
1208
1111
|
};
|
1209
1112
|
name = Release;
|
1210
1113
|
};
|
1211
|
-
F23B803FA96C1368AC4910D8320BAE58 /* Release */ = {
|
1212
|
-
isa = XCBuildConfiguration;
|
1213
|
-
baseConfigurationReference = 8BB9715C803220B394A2E3D3689E4942 /* XCFit.xcconfig */;
|
1214
|
-
buildSettings = {
|
1215
|
-
CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/XCFit";
|
1216
|
-
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
1217
|
-
GCC_NO_COMMON_BLOCKS = YES;
|
1218
|
-
INFOPLIST_FILE = "Target Support Files/XCFit/ResourceBundle-XCFit-Info.plist";
|
1219
|
-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
|
1220
|
-
PRODUCT_NAME = XCFit;
|
1221
|
-
SDKROOT = iphoneos;
|
1222
|
-
SKIP_INSTALL = YES;
|
1223
|
-
TARGETED_DEVICE_FAMILY = "1,2";
|
1224
|
-
WRAPPER_EXTENSION = bundle;
|
1225
|
-
};
|
1226
|
-
name = Release;
|
1227
|
-
};
|
1228
1114
|
F594C655D48020EC34B00AA63E001773 /* Release */ = {
|
1229
1115
|
isa = XCBuildConfiguration;
|
1230
1116
|
buildSettings = {
|
@@ -1266,29 +1152,29 @@
|
|
1266
1152
|
/* End XCBuildConfiguration section */
|
1267
1153
|
|
1268
1154
|
/* Begin XCConfigurationList section */
|
1269
|
-
|
1155
|
+
18160617C0E49202EFFDA8B5AEE18056 /* Build configuration list for PBXNativeTarget "OCSlimProject-OCSlimProject" */ = {
|
1270
1156
|
isa = XCConfigurationList;
|
1271
1157
|
buildConfigurations = (
|
1272
|
-
|
1273
|
-
|
1158
|
+
6D5670708A567F2AE1FC3688495637D8 /* Debug */,
|
1159
|
+
6F6B83D7576AA72B154B27948D69F09D /* Release */,
|
1274
1160
|
);
|
1275
1161
|
defaultConfigurationIsVisible = 0;
|
1276
1162
|
defaultConfigurationName = Release;
|
1277
1163
|
};
|
1278
|
-
|
1164
|
+
2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
|
1279
1165
|
isa = XCConfigurationList;
|
1280
1166
|
buildConfigurations = (
|
1281
|
-
|
1282
|
-
|
1167
|
+
84FD87D359382A37B07149A12641B965 /* Debug */,
|
1168
|
+
F594C655D48020EC34B00AA63E001773 /* Release */,
|
1283
1169
|
);
|
1284
1170
|
defaultConfigurationIsVisible = 0;
|
1285
1171
|
defaultConfigurationName = Release;
|
1286
1172
|
};
|
1287
|
-
|
1173
|
+
32A5F9C31CA13D486195178CE519AF57 /* Build configuration list for PBXNativeTarget "cslim" */ = {
|
1288
1174
|
isa = XCConfigurationList;
|
1289
1175
|
buildConfigurations = (
|
1290
|
-
|
1291
|
-
|
1176
|
+
BD49FABE1DF6395906069D1E2700FA6B /* Debug */,
|
1177
|
+
91308FB6058F8A3CD4D449FBFD909B34 /* Release */,
|
1292
1178
|
);
|
1293
1179
|
defaultConfigurationIsVisible = 0;
|
1294
1180
|
defaultConfigurationName = Release;
|
@@ -1302,15 +1188,6 @@
|
|
1302
1188
|
defaultConfigurationIsVisible = 0;
|
1303
1189
|
defaultConfigurationName = Release;
|
1304
1190
|
};
|
1305
|
-
6A54F4788775190846DD9306CC571EB1 /* Build configuration list for PBXNativeTarget "OCSlimProject-OCSlimProject" */ = {
|
1306
|
-
isa = XCConfigurationList;
|
1307
|
-
buildConfigurations = (
|
1308
|
-
33B7B11BEF268EFCFA31253F1C4A6759 /* Debug */,
|
1309
|
-
6B37D8FB7A158C527124F94FB8ED1025 /* Release */,
|
1310
|
-
);
|
1311
|
-
defaultConfigurationIsVisible = 0;
|
1312
|
-
defaultConfigurationName = Release;
|
1313
|
-
};
|
1314
1191
|
86D6CA44B2860A3F30E7541A8E5F739C /* Build configuration list for PBXNativeTarget "XCFit" */ = {
|
1315
1192
|
isa = XCConfigurationList;
|
1316
1193
|
buildConfigurations = (
|