Add encoding to ruby files

This commit is contained in:
Dan Kubb 2013-07-29 17:17:04 -07:00
parent 16bb6a398c
commit 8f46081d59
2 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,7 @@
# encoding: utf-8
require 'devtools'
Devtools.init_rake_tasks
Rake.application.load_imports

View File

@ -1,5 +1,7 @@
#!/usr/bin/env ruby
# encoding: utf-8
trap('INT') do |status|
exit! 128 + status
end