Skip to content

Commit

Permalink
Seperating out LKAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Sargent committed Feb 10, 2016
1 parent 8d09990 commit e8c26a1
Show file tree
Hide file tree
Showing 63 changed files with 8,071 additions and 54 deletions.
8 changes: 4 additions & 4 deletions Example/LKAPI.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
objects = {

/* Begin PBXBuildFile section */
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; };
607FACEC1AFB9204008FA782 /* APITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* APITests.swift */; };
6FBF4E879B7EC7D0D10759FB /* Pods_LKAPI_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DDE5DACBF32E6149F164429 /* Pods_LKAPI_Tests.framework */; };
/* End PBXBuildFile section */

Expand All @@ -16,7 +16,7 @@
25B55B7A682F566703F1AC80 /* Pods-LKAPI_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LKAPI_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LKAPI_Tests/Pods-LKAPI_Tests.debug.xcconfig"; sourceTree = "<group>"; };
607FACE51AFB9204008FA782 /* LKAPI_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LKAPI_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = "<group>"; };
607FACEB1AFB9204008FA782 /* APITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = APITests.swift; sourceTree = "<group>"; };
728515D2FBEE9168F92BA6B5 /* Pods-LKAPI_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LKAPI_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-LKAPI_Tests/Pods-LKAPI_Tests.release.xcconfig"; sourceTree = "<group>"; };
7DDE5DACBF32E6149F164429 /* Pods_LKAPI_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LKAPI_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
8642178C40AD8705BC647625 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = "<group>"; };
Expand Down Expand Up @@ -74,7 +74,7 @@
607FACE81AFB9204008FA782 /* Tests */ = {
isa = PBXGroup;
children = (
607FACEB1AFB9204008FA782 /* Tests.swift */,
607FACEB1AFB9204008FA782 /* APITests.swift */,
607FACE91AFB9204008FA782 /* Supporting Files */,
);
path = Tests;
Expand Down Expand Up @@ -218,7 +218,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
607FACEC1AFB9204008FA782 /* Tests.swift in Sources */,
607FACEC1AFB9204008FA782 /* APITests.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
10 changes: 10 additions & 0 deletions Example/LKAPI.xcworkspace/contents.xcworkspacedata

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

4 changes: 3 additions & 1 deletion Example/Podfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/Lightningkite/LKPodspec.git'
use_frameworks!


target 'LKAPI_Tests', :exclusive => true do
pod 'LKAPI', :path => '../'


pod 'LKEnvironment'

end
21 changes: 21 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
PODS:
- Alamofire (3.2.0)
- LKAPI (0.1.0):
- Alamofire
- LKEnvironment
- LKEnvironment (0.1.1)

DEPENDENCIES:
- LKAPI (from `../`)
- LKEnvironment

EXTERNAL SOURCES:
LKAPI:
:path: ../

SPEC CHECKSUMS:
Alamofire: 4da478599fccddff361205c8929333d7fe18dceb
LKAPI: e417b67bbff86b3f951fcbb74231794f2fd2cd5c
LKEnvironment: 1815f15ba8979f84d78808199912b77c239699ca

COCOAPODS: 0.39.0
19 changes: 19 additions & 0 deletions Example/Pods/Alamofire/LICENSE

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

0 comments on commit e8c26a1

Please sign in to comment.