Skip to content

Commit

Permalink
Carthage
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiinui committed Feb 24, 2017
1 parent fc1293b commit ded20fc
Show file tree
Hide file tree
Showing 6 changed files with 484 additions and 4 deletions.
24 changes: 24 additions & 0 deletions RMTConfig/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>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>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>
19 changes: 19 additions & 0 deletions RMTConfig/RMTConfig.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//
// RMTConfig.h
// RMTConfig
//
// Created by kai inui on 2017/02/24.
// Copyright © 2017年 kotori. All rights reserved.
//

#import <UIKit/UIKit.h>

//! Project version number for RMTConfig.
FOUNDATION_EXPORT double RMTConfigVersionNumber;

//! Project version string for RMTConfig.
FOUNDATION_EXPORT const unsigned char RMTConfigVersionString[];

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


22 changes: 22 additions & 0 deletions RMTConfigTests/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?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>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleVersion</key>
<string>1</string>
</dict>
</plist>
39 changes: 39 additions & 0 deletions RMTConfigTests/RMTConfigTests.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
//
// RMTConfigTests.m
// RMTConfigTests
//
// Created by kai inui on 2017/02/24.
// Copyright © 2017年 kotori. All rights reserved.
//

#import <XCTest/XCTest.h>

@interface RMTConfigTests : XCTestCase

@end

@implementation RMTConfigTests

- (void)setUp {
[super setUp];
// Put setup code here. This method is called before the invocation of each test method in the class.
}

- (void)tearDown {
// Put teardown code here. This method is called after the invocation of each test method in the class.
[super tearDown];
}

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

- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
// Put the code you want to measure the time of here.
}];
}

@end
Loading

0 comments on commit ded20fc

Please sign in to comment.