Skip to content

Commit

Permalink
Not ignore .framework
Browse files Browse the repository at this point in the history
  • Loading branch information
onmyway133 committed Sep 4, 2016
1 parent e58d323 commit e3141b6
Show file tree
Hide file tree
Showing 27 changed files with 741 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ DerivedData
*.hmap
*.ipa
*.xcuserstate
*.framework

# CocoaPods
Pods
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// FTGConstants.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#ifndef FTGConstants_h
#define FTGConstants_h

static CGFloat windowWidth = 680;
static CGFloat windowHeight = 400;
static CGFloat topHeight = 50;

#endif /* FTGConstants_h */
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// Manager.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "FTGWindow.h"

@interface FTGManager : NSObject

+ (instancetype)shared;
- (void)say;
- (FTGWindow *)makeWindow;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// Window.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface FTGWindow : NSWindow

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// SketchActionFramework.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Cocoa/Cocoa.h>

//! Project version number for SketchActionFramework.
FOUNDATION_EXPORT double SketchActionFrameworkVersionNumber;

//! Project version string for SketchActionFramework.
FOUNDATION_EXPORT const unsigned char SketchActionFrameworkVersionString[];

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

#import <SketchActionFramework/FTGManager.h>
#import <SketchActionFramework/FTGWindow.h>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module SketchActionFramework {
umbrella header "SketchActionFramework.h"

export *
module * { export * }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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>BuildMachineOSBuild</key>
<string>15G31</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>SketchActionFramework</string>
<key>CFBundleIdentifier</key>
<string>com.fantageek.sketch.SketchActionFramework</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>SketchActionFramework</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>7D1014</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>15E60</string>
<key>DTSDKName</key>
<string>macosx10.11</string>
<key>DTXcode</key>
<string>0731</string>
<key>DTXcodeBuild</key>
<string>7D1014</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 Fantageek. All rights reserved.</string>
</dict>
</plist>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// FTGConstants.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#ifndef FTGConstants_h
#define FTGConstants_h

static CGFloat windowWidth = 680;
static CGFloat windowHeight = 400;
static CGFloat topHeight = 50;

#endif /* FTGConstants_h */
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
//
// Manager.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "FTGWindow.h"

@interface FTGManager : NSObject

+ (instancetype)shared;
- (void)say;
- (FTGWindow *)makeWindow;

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// Window.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Cocoa/Cocoa.h>

@interface FTGWindow : NSWindow

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// SketchActionFramework.h
// SketchActionFramework
//
// Created by Khoa Pham on 04/09/16.
// Copyright © 2016 Fantageek. All rights reserved.
//

#import <Cocoa/Cocoa.h>

//! Project version number for SketchActionFramework.
FOUNDATION_EXPORT double SketchActionFrameworkVersionNumber;

//! Project version string for SketchActionFramework.
FOUNDATION_EXPORT const unsigned char SketchActionFrameworkVersionString[];

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

#import <SketchActionFramework/FTGManager.h>
#import <SketchActionFramework/FTGWindow.h>
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
framework module SketchActionFramework {
umbrella header "SketchActionFramework.h"

export *
module * { export * }
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?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>BuildMachineOSBuild</key>
<string>15G31</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>SketchActionFramework</string>
<key>CFBundleIdentifier</key>
<string>com.fantageek.sketch.SketchActionFramework</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>SketchActionFramework</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>7D1014</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>15E60</string>
<key>DTSDKName</key>
<string>macosx10.11</string>
<key>DTXcode</key>
<string>0731</string>
<key>DTXcodeBuild</key>
<string>7D1014</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2016 Fantageek. All rights reserved.</string>
</dict>
</plist>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading

0 comments on commit e3141b6

Please sign in to comment.