Skip to content

Commit 447c978

Browse files
committed
Merge pull request #1 from Jamonek/develop
Realm, and Parsimmon support
2 parents 35666ad + 14e94b0 commit 447c978

File tree

6 files changed

+407
-10
lines changed

6 files changed

+407
-10
lines changed

Podfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
use_frameworks!
2+
pod 'Parsimmon', '~> 0.4.0'
3+
pod 'RealmSwift'

Text Classifier.xcodeproj/project.pbxproj

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
64F594A61C05D8E400C85067 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 64F594A41C05D8E400C85067 /* LaunchScreen.storyboard */; };
1616
64F594B11C05D8E400C85067 /* Text_ClassifierTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F594B01C05D8E400C85067 /* Text_ClassifierTests.swift */; };
1717
64F594BC1C05D8E500C85067 /* Text_ClassifierUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F594BB1C05D8E500C85067 /* Text_ClassifierUITests.swift */; };
18+
64F594CB1C05DE7200C85067 /* ClassifierVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F594CA1C05DE7200C85067 /* ClassifierVC.swift */; };
19+
64F594CD1C05DEEB00C85067 /* ClassifierCVCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F594CC1C05DEEB00C85067 /* ClassifierCVCell.swift */; };
20+
64F594CF1C06681100C85067 /* CData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64F594CE1C06681100C85067 /* CData.swift */; };
1821
DC78CD3A98166EADE961CA99 /* Pods.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A97CABDDB315FB655C0447D3 /* Pods.framework */; };
1922
/* End PBXBuildFile section */
2023

@@ -50,6 +53,9 @@
5053
64F594B71C05D8E500C85067 /* Text ClassifierUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "Text ClassifierUITests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
5154
64F594BB1C05D8E500C85067 /* Text_ClassifierUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Text_ClassifierUITests.swift; sourceTree = "<group>"; };
5255
64F594BD1C05D8E500C85067 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
56+
64F594CA1C05DE7200C85067 /* ClassifierVC.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClassifierVC.swift; sourceTree = "<group>"; };
57+
64F594CC1C05DEEB00C85067 /* ClassifierCVCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ClassifierCVCell.swift; sourceTree = "<group>"; };
58+
64F594CE1C06681100C85067 /* CData.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CData.swift; sourceTree = "<group>"; };
5359
6A4D34E8E2880D97291A13E8 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
5460
A97CABDDB315FB655C0447D3 /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
5561
A9B3DDD0EF7F568476336B37 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
@@ -115,6 +121,7 @@
115121
64F594971C05D8E400C85067 /* Text Classifier */ = {
116122
isa = PBXGroup;
117123
children = (
124+
64F594C91C05DE4F00C85067 /* Classifier */,
118125
64F594981C05D8E400C85067 /* AppDelegate.swift */,
119126
64F5949A1C05D8E400C85067 /* ViewController.swift */,
120127
64F5949C1C05D8E400C85067 /* Main.storyboard */,
@@ -144,6 +151,16 @@
144151
path = "Text ClassifierUITests";
145152
sourceTree = "<group>";
146153
};
154+
64F594C91C05DE4F00C85067 /* Classifier */ = {
155+
isa = PBXGroup;
156+
children = (
157+
64F594CA1C05DE7200C85067 /* ClassifierVC.swift */,
158+
64F594CC1C05DEEB00C85067 /* ClassifierCVCell.swift */,
159+
64F594CE1C06681100C85067 /* CData.swift */,
160+
);
161+
name = Classifier;
162+
sourceTree = "<group>";
163+
};
147164
C3C8D0B6FBB73898D5AAB10D /* Frameworks */ = {
148165
isa = PBXGroup;
149166
children = (
@@ -337,6 +354,9 @@
337354
64F594A11C05D8E400C85067 /* Text_Classifier.xcdatamodeld in Sources */,
338355
64F5949B1C05D8E400C85067 /* ViewController.swift in Sources */,
339356
64F594991C05D8E400C85067 /* AppDelegate.swift in Sources */,
357+
64F594CF1C06681100C85067 /* CData.swift in Sources */,
358+
64F594CB1C05DE7200C85067 /* ClassifierVC.swift in Sources */,
359+
64F594CD1C05DEEB00C85067 /* ClassifierCVCell.swift in Sources */,
340360
);
341361
runOnlyForDeploymentPostprocessing = 0;
342362
};

0 commit comments

Comments
 (0)