summaryrefslogtreecommitdiff
path: root/lib/abbrev.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/abbrev.rb')
-rw-r--r--[-rwxr-xr-x]lib/abbrev.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/abbrev.rb b/lib/abbrev.rb
index f8c518ca89..2c07fb5cf9 100755..100644
--- a/lib/abbrev.rb
+++ b/lib/abbrev.rb
@@ -1,4 +1,3 @@
-#!/usr/bin/env ruby
#--
# Copyright (c) 2001,2003 Akinori MUSHA <knu@iDaemons.org>
#
@@ -130,13 +129,3 @@ class Array
Abbrev::abbrev(self, pattern)
end
end
-
-if $0 == __FILE__
- while line = gets
- hash = line.split.abbrev
-
- hash.sort.each do |k, v|
- puts "#{k} => #{v}"
- end
- end
-end