Skip to content

Commit

Permalink
Initial commit of Gity.codaplugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobthecow committed Feb 25, 2010
0 parents commit 92c7ef6
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 0 deletions.
47 changes: 47 additions & 0 deletions Gity.codaplugin/Contents/Info.plist
@@ -0,0 +1,47 @@
<?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>CodaScriptPlugIn</string>
<key>CFBundleIconFile</key>
<string>plug-in</string>
<key>CFBundleIdentifier</key>
<string>com.justinhileman.codaplugin.gity</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.1</string>
<key>CodaPlugInMinimumAPIVersion</key>
<string>3</string>
<key>NSPrincipalClass</key>
<string>CodaScriptPlugIn</string>
<key>commands</key>
<array>
<dict>
<key>fallbackInput</key>
<string>none</string>
<key>input</key>
<string>none</string>
<key>keyEquivalent</key>
<string>$^g</string>
<key>keyEquivalentConflict</key>
<false/>
<key>name</key>
<string>Open Site in Gity</string>
<key>output</key>
<string>discard</string>
<key>script</key>
<string>script</string>
<key>uuid</key>
<string>0198BACD-92E8-4879-9046-DBB10FAEA789</string>
</dict>
</array>
</dict>
</plist>
Binary file added Gity.codaplugin/Contents/MacOS/CodaScriptPlugIn
Binary file not shown.
@@ -0,0 +1,11 @@
#!/bin/bash

# Find a directory ...
if [ -n "$CODA_SITE_LOCAL_PATH" ]; then
cd "$CODA_SITE_LOCAL_PATH"
elif [ -n "$CODA_FILEPATH" ]; then
cd `dirname "$CODA_FILEPATH"`
fi

# Open gity.
/usr/local/bin/gity
18 changes: 18 additions & 0 deletions README.markdown
@@ -0,0 +1,18 @@
Gity Coda Plugin
================

This Coda plugin integrates Coda with [Gity][1], a sweet little Git client for OS X.

1. [Download Gity][1]
2. Install `gity` Terminal support
3. Profit!

[1]: http://gist.github.com/315042


&#x2303;&#x21E7;G - Open Site in Gity
-----------------------------

Opens the current site directory in Gity.

If you aren't in a site, it tries to open the current file's directory.

0 comments on commit 92c7ef6

Please sign in to comment.