forked from intentkit/IntentKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Demo app now loads the library as a local Pod dependency
- Loading branch information
1 parent
3434c29
commit e8c51db
Showing
7 changed files
with
1,332 additions
and
610 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
Pods/* | ||
Podfile.lock | ||
|
||
# gitignore.io | ||
*.xcworkspace | ||
|
46 changes: 46 additions & 0 deletions
46
MWOpenInKit-Resources/MWOpenInKit-Resources/MWOpenInKit-Resources-Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>CFBundleDevelopmentRegion</key> | ||
<string>English</string> | ||
<key>CFBundleExecutable</key> | ||
<string>${EXECUTABLE_NAME}</string> | ||
<key>CFBundleIconFile</key> | ||
<string></string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.lazerwalker.${PRODUCT_NAME:rfc1034identifier}</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>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
<key>CFPlugInDynamicRegisterFunction</key> | ||
<string></string> | ||
<key>CFPlugInDynamicRegistration</key> | ||
<string>NO</string> | ||
<key>CFPlugInFactories</key> | ||
<dict> | ||
<key>00000000-0000-0000-0000-000000000000</key> | ||
<string>MyFactoryFunction</string> | ||
</dict> | ||
<key>CFPlugInTypes</key> | ||
<dict> | ||
<key>00000000-0000-0000-0000-000000000000</key> | ||
<array> | ||
<string>00000000-0000-0000-0000-000000000000</string> | ||
</array> | ||
</dict> | ||
<key>CFPlugInUnloadFunction</key> | ||
<string></string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2013 Mike Walker. All rights reserved.</string> | ||
</dict> | ||
</plist> |
9 changes: 9 additions & 0 deletions
9
MWOpenInKit-Resources/MWOpenInKit-Resources/MWOpenInKit-Resources-Prefix.pch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// | ||
// Prefix header | ||
// | ||
// The contents of this file are implicitly included at the beginning of every source file. | ||
// | ||
|
||
#ifdef __OBJC__ | ||
#import <Cocoa/Cocoa.h> | ||
#endif |
2 changes: 2 additions & 0 deletions
2
MWOpenInKit-Resources/MWOpenInKit-Resources/en.lproj/InfoPlist.strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* Localized versions of Info.plist keys */ | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
pod "MWOpenInKit", :path => "." | ||
|
||
target :MWOpenInKitTests do | ||
pod "Specta", "~> 0.2.1" | ||
pod "Expecta", "~> 0.2.3" | ||
pod "OCMockito", "~> 1.0" | ||
end | ||
end |
This file was deleted.
Oops, something went wrong.