summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xupdate.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/update.rb b/update.rb
deleted file mode 100755
index 87364d80aa..0000000000
--- a/update.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env ruby
-
-RESULT = / * #(.*?)/
-CODE = / * (.*?)/
-
-ARGV.each do |path|
- lines = File.readlines(path)
-
- lines.each do |line|
- if line =~ /\/\*/
- last = nil
- elsif match = line.match(RESULT)
- line.replace(" * \# => #{last}")
- elsif match = line.match(CODE)
- last = eval(match[1])
- end
- end
-
- puts lines
-end