Skip to content

Commit

Permalink
Add workspace and framework project
Browse files Browse the repository at this point in the history
  • Loading branch information
trsathya committed Apr 22, 2018
1 parent 04284f1 commit b3b1a68
Show file tree
Hide file tree
Showing 6 changed files with 678 additions and 0 deletions.
582 changes: 582 additions & 0 deletions Cryptex.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.

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

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

19 changes: 19 additions & 0 deletions Cryptex/Cryptex.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// Cryptex.h
// Cryptex
//
// Created by Sathya on 4/22/18.
// Copyright © 2018 Sathya. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for Cryptex.
FOUNDATION_EXPORT double CryptexVersionNumber;

//! Project version string for Cryptex.
FOUNDATION_EXPORT const unsigned char CryptexVersionString[];

// In this header, you should import all the public headers of your framework using statements like #import <Cryptex/PublicHeader.h>


24 changes: 24 additions & 0 deletions Cryptex/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?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>$(DEVELOPMENT_LANGUAGE)</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>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
36 changes: 36 additions & 0 deletions CryptexTests/CryptexTests.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
//
// CryptexTests.swift
// CryptexTests
//
// Created by Sathya on 4/22/18.
// Copyright © 2018 Sathya. All rights reserved.
//

import XCTest
@testable import Cryptex

class CryptexTests: XCTestCase {

override func setUp() {
super.setUp()
// Put setup code here. This method is called before the invocation of each test method in the class.
}

override func tearDown() {
// Put teardown code here. This method is called after the invocation of each test method in the class.
super.tearDown()
}

func testExample() {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}

func testPerformanceExample() {
// This is an example of a performance test case.
self.measure {
// Put the code you want to measure the time of here.
}
}

}

0 comments on commit b3b1a68

Please sign in to comment.