Skip to content

Commit 436e365

Browse files
committed
Create project in the root
1 parent 66f8748 commit 436e365

30 files changed

+719
-679
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,6 @@ DerivedData
2828

2929
# CocoaPods
3030
Pods
31+
32+
# Carthage
33+
Carthage

Cache.xcodeproj/project.pbxproj

+659
Large diffs are not rendered by default.

Pod/CacheTests.xcodeproj/project.xcworkspace/contents.xcworkspacedata Cache.xcodeproj/project.xcworkspace/contents.xcworkspacedata

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Pod/CacheTests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme Cache.xcodeproj/xcshareddata/xcschemes/Cache-iOS.xcscheme

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "0700"
3+
LastUpgradeVersion = "0720"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -9,15 +9,15 @@
99
<BuildActionEntry
1010
buildForTesting = "YES"
1111
buildForRunning = "YES"
12-
buildForProfiling = "NO"
13-
buildForArchiving = "NO"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
1414
buildForAnalyzing = "YES">
1515
<BuildableReference
1616
BuildableIdentifier = "primary"
17-
BlueprintIdentifier = "146D72AB1AB782920058798C"
18-
BuildableName = "Tests.xctest"
19-
BlueprintName = "Tests"
20-
ReferencedContainer = "container:CacheTests.xcodeproj">
17+
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
18+
BuildableName = "Cache.framework"
19+
BlueprintName = "Cache-iOS"
20+
ReferencedContainer = "container:Cache.xcodeproj">
2121
</BuildableReference>
2222
</BuildActionEntry>
2323
</BuildActionEntries>
@@ -32,20 +32,20 @@
3232
skipped = "NO">
3333
<BuildableReference
3434
BuildableIdentifier = "primary"
35-
BlueprintIdentifier = "146D72AB1AB782920058798C"
36-
BuildableName = "Tests.xctest"
37-
BlueprintName = "Tests"
38-
ReferencedContainer = "container:CacheTests.xcodeproj">
35+
BlueprintIdentifier = "D5DC59E91C20593E003BD79B"
36+
BuildableName = "CacheTests.xctest"
37+
BlueprintName = "CacheTests"
38+
ReferencedContainer = "container:Cache.xcodeproj">
3939
</BuildableReference>
4040
</TestableReference>
4141
</Testables>
4242
<MacroExpansion>
4343
<BuildableReference
4444
BuildableIdentifier = "primary"
45-
BlueprintIdentifier = "146D72AB1AB782920058798C"
46-
BuildableName = "Tests.xctest"
47-
BlueprintName = "Tests"
48-
ReferencedContainer = "container:CacheTests.xcodeproj">
45+
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
46+
BuildableName = "Cache.framework"
47+
BlueprintName = "Cache-iOS"
48+
ReferencedContainer = "container:Cache.xcodeproj">
4949
</BuildableReference>
5050
</MacroExpansion>
5151
<AdditionalOptions>
@@ -64,10 +64,10 @@
6464
<MacroExpansion>
6565
<BuildableReference
6666
BuildableIdentifier = "primary"
67-
BlueprintIdentifier = "146D72AB1AB782920058798C"
68-
BuildableName = "Tests.xctest"
69-
BlueprintName = "Tests"
70-
ReferencedContainer = "container:CacheTests.xcodeproj">
67+
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
68+
BuildableName = "Cache.framework"
69+
BlueprintName = "Cache-iOS"
70+
ReferencedContainer = "container:Cache.xcodeproj">
7171
</BuildableReference>
7272
</MacroExpansion>
7373
<AdditionalOptions>
@@ -82,10 +82,10 @@
8282
<MacroExpansion>
8383
<BuildableReference
8484
BuildableIdentifier = "primary"
85-
BlueprintIdentifier = "146D72AB1AB782920058798C"
86-
BuildableName = "Tests.xctest"
87-
BlueprintName = "Tests"
88-
ReferencedContainer = "container:CacheTests.xcodeproj">
85+
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
86+
BuildableName = "Cache.framework"
87+
BlueprintName = "Cache-iOS"
88+
ReferencedContainer = "container:Cache.xcodeproj">
8989
</BuildableReference>
9090
</MacroExpansion>
9191
</ProfileAction>

Cartfile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "Quick/Nimble"
2+
github "Quick/Quick"

Cartfile.resolved

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github "Quick/Nimble" "v3.0.0"
2+
github "Quick/Quick" "v0.8.0"

Pod/CacheTests.xcodeproj/project.pbxproj

-626
This file was deleted.

Pod/CacheTests.xcworkspace/contents.xcworkspacedata

-10
This file was deleted.

Pod/Podfile

-6
This file was deleted.

Pod/Podfile.lock

-13
This file was deleted.

SupportFiles/Info.plist

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleSignature</key>
20+
<string>????</string>
21+
<key>CFBundleVersion</key>
22+
<string>$(CURRENT_PROJECT_VERSION)</string>
23+
<key>NSPrincipalClass</key>
24+
<string></string>
25+
</dict>
26+
</plist>

Pod/Tests/Helpers/Data/User.swift Tests/Helpers/Data/User.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import Foundation
2+
@testable import Cache
23

34
struct User {
45

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Pod/Tests/Specs/Extensions/NSData+CacheSpec.swift Tests/Specs/Extensions/NSData+CacheSpec.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Quick
22
import Nimble
3+
@testable import Cache
34

45
class NSDataCacheSpec: QuickSpec {
56

Pod/Tests/Specs/Storage/MemoryStorageSpec.swift Tests/Specs/Storage/MemoryStorageSpec.swift

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import Quick
22
import Nimble
3+
@testable import Cache
34

45
class MemoryStorageSpec: QuickSpec {
56

0 commit comments

Comments
 (0)