-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0e060a3
Showing
8 changed files
with
1,022 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Xcode | ||
.DS_Store | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
*.xcworkspace | ||
!default.xcworkspace | ||
xcuserdata | ||
profile | ||
*.moved-aside | ||
DerivedData | ||
.idea/ | ||
|
||
/choose | ||
/choose*.zip | ||
/choose*.tgz |
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,26 @@ | ||
<?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>CFBundleIdentifier</key> | ||
<string>com.tinyrobotsoftware.choose</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>1.0</string> | ||
<key>LSApplicationCategoryType</key> | ||
<string>public.app-category.productivity</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>${MACOSX_DEPLOYMENT_TARGET}</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string>Copyright © 2014 Tiny Robot Software. All rights reserved.</string> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>LSUIElement</key> | ||
<true/> | ||
</dict> | ||
</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,22 @@ | ||
VERSION = $(shell defaults read `pwd`/Info CFBundleVersion) | ||
APPFILE = choose | ||
TGZFILE = choose-$(VERSION).tgz | ||
ZIPFILE = choose-$(VERSION).zip | ||
|
||
release: $(TGZFILE) $(ZIPFILE) | ||
|
||
$(APPFILE): SDAppDelegate.m choose.xcodeproj | ||
rm -rf $@ | ||
xcodebuild clean build > /dev/null | ||
cp -R build/Release/choose $@ | ||
|
||
$(TGZFILE): $(APPFILE) | ||
tar -czf $@ $< | ||
|
||
$(ZIPFILE): $(APPFILE) | ||
zip -qr $@ $< | ||
|
||
clean: | ||
rm -rf $(APPFILE) $(TGZFILE) $(ZIPFILE) | ||
|
||
.PHONY: release clean |
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,13 @@ | ||
choose | ||
------ | ||
|
||
*The nerdy way to choose stuff* | ||
|
||
--- | ||
|
||
- Gets list of items from stdin. | ||
- Fuzzy-searches as you type. | ||
- Sends result to stdout. | ||
- Free trial is untimed, Sublime Text style. | ||
- Run choose -h for more info. | ||
- [vim integration](./choose.vim) |
Oops, something went wrong.