summaryrefslogtreecommitdiff
path: root/data/to_ascii.rb
diff options
context:
space:
mode:
Diffstat (limited to 'data/to_ascii.rb')
-rwxr-xr-xdata/to_ascii.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/data/to_ascii.rb b/data/to_ascii.rb
deleted file mode 100755
index 6c1d23e..0000000
--- a/data/to_ascii.rb
+++ /dev/null
@@ -1,13 +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
-