summaryrefslogtreecommitdiff
path: root/plugins/droplr/droplr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/droplr/droplr.rb')
-rwxr-xr-xplugins/droplr/droplr.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/droplr/droplr.rb b/plugins/droplr/droplr.rb
deleted file mode 100755
index 00300198e..000000000
--- a/plugins/droplr/droplr.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env ruby
-
-if ARGV[0].nil?
- puts "You need to specify a parameter."
- exit!(1)
-end
-
-if ARGV[0][%r{^http[|s]://}i]
- `osascript -e 'tell app "Droplr" to shorten "#{ARGV[0]}"'`
-else
- `open -ga /Applications/Droplr.app "#{ARGV[0]}"`
-end