summaryrefslogtreecommitdiff
path: root/to_ascii
diff options
context:
space:
mode:
Diffstat (limited to 'to_ascii')
-rwxr-xr-xto_ascii12
1 files changed, 0 insertions, 12 deletions
diff --git a/to_ascii b/to_ascii
deleted file mode 100755
index 10fd1c2..0000000
--- a/to_ascii
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env ruby
-
-while line = STDIN.gets
- encoding_options = {
- :invalid => :replace,
- :undef => :replace,
- :replace => '?',
- :universal_newline => true
- }
- puts line.encode 'ASCII', encoding_options
-end
-