Commit 817ad703 by Andrew Cantino

gitignore .idea directory, make executable a bit more flexible

parent 7248588c
......@@ -15,3 +15,4 @@ spec/reports
test/tmp
test/version_tmp
tmp
.idea
#!/usr/bin/env ruby
# -*- encoding: utf-8 -*-
$: << File.expand_path(File.join(File.dirname(__FILE__), '..', 'lib'))
require 'rubygems'
require 'rumoji'
Rumoji.decode_io(STDIN, STDOUT)
if ARGV.first == 'encode'
Rumoji.encode_io(STDIN, STDOUT)
else
Rumoji.decode_io(STDIN, STDOUT)
end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment