Merge pull request #244 from darthdeus/encoding

Set default Encoding to UTF_8 for Ruby 1.9
This commit is contained in:
João Távora 2012-05-07 09:01:08 -07:00
commit bbef037483

View File

@ -19,6 +19,7 @@ require 'fileutils'
require 'shellwords' # String#shellescape
require 'ruby-debug' if $DEBUG
Encoding.default_external = Encoding::UTF_8 if RUBY_VERSION > '1.8.7'
opts = Trollop::options do
opt :bundle_dir, "TextMate bundle directory", :short => '-d', :type => :string