Skip to content

Commit

Permalink
Create project in the root
Browse files Browse the repository at this point in the history
  • Loading branch information
vadymmarkov committed Dec 15, 2015
1 parent 66f8748 commit 436e365
Show file tree
Hide file tree
Showing 30 changed files with 719 additions and 679 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ DerivedData

# CocoaPods
Pods

# Carthage
Carthage
659 changes: 659 additions & 0 deletions Cache.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0700"
LastUpgradeVersion = "0720"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand All @@ -9,15 +9,15 @@
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "NO"
buildForArchiving = "NO"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "146D72AB1AB782920058798C"
BuildableName = "Tests.xctest"
BlueprintName = "Tests"
ReferencedContainer = "container:CacheTests.xcodeproj">
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
BuildableName = "Cache.framework"
BlueprintName = "Cache-iOS"
ReferencedContainer = "container:Cache.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
Expand All @@ -32,20 +32,20 @@
skipped = "NO">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "146D72AB1AB782920058798C"
BuildableName = "Tests.xctest"
BlueprintName = "Tests"
ReferencedContainer = "container:CacheTests.xcodeproj">
BlueprintIdentifier = "D5DC59E91C20593E003BD79B"
BuildableName = "CacheTests.xctest"
BlueprintName = "CacheTests"
ReferencedContainer = "container:Cache.xcodeproj">
</BuildableReference>
</TestableReference>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "146D72AB1AB782920058798C"
BuildableName = "Tests.xctest"
BlueprintName = "Tests"
ReferencedContainer = "container:CacheTests.xcodeproj">
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
BuildableName = "Cache.framework"
BlueprintName = "Cache-iOS"
ReferencedContainer = "container:Cache.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
Expand All @@ -64,10 +64,10 @@
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "146D72AB1AB782920058798C"
BuildableName = "Tests.xctest"
BlueprintName = "Tests"
ReferencedContainer = "container:CacheTests.xcodeproj">
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
BuildableName = "Cache.framework"
BlueprintName = "Cache-iOS"
ReferencedContainer = "container:Cache.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
Expand All @@ -82,10 +82,10 @@
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "146D72AB1AB782920058798C"
BuildableName = "Tests.xctest"
BlueprintName = "Tests"
ReferencedContainer = "container:CacheTests.xcodeproj">
BlueprintIdentifier = "D5DC59DF1C20593E003BD79B"
BuildableName = "Cache.framework"
BlueprintName = "Cache-iOS"
ReferencedContainer = "container:Cache.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
Expand Down
2 changes: 2 additions & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github "Quick/Nimble"
github "Quick/Quick"
2 changes: 2 additions & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github "Quick/Nimble" "v3.0.0"
github "Quick/Quick" "v0.8.0"
626 changes: 0 additions & 626 deletions Pod/CacheTests.xcodeproj/project.pbxproj

This file was deleted.

10 changes: 0 additions & 10 deletions Pod/CacheTests.xcworkspace/contents.xcworkspacedata

This file was deleted.

6 changes: 0 additions & 6 deletions Pod/Podfile

This file was deleted.

13 changes: 0 additions & 13 deletions Pod/Podfile.lock

This file was deleted.

26 changes: 26 additions & 0 deletions SupportFiles/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Foundation
@testable import Cache

struct User {

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Quick
import Nimble
@testable import Cache

class NSDataCacheSpec: QuickSpec {

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Quick
import Nimble
@testable import Cache

class MemoryStorageSpec: QuickSpec {

Expand Down

0 comments on commit 436e365

Please sign in to comment.