Silence Some Stupid Warnings in Ruby 1.9

This commit is contained in:
Jacques Distler 2009-12-18 23:53:43 -06:00
parent 76f388f3e2
commit 9874650e4b
2 changed files with 4 additions and 2 deletions

View file

@ -11,7 +11,7 @@ module Chunk
# Rails's default utf-8 support causes problems here. So, for Chunk::Abstract class, turn off
# multibyte character support.
$KCODE = 'n'
$KCODE = 'n' unless ''.respond_to?(:force_encoding)
# automatically construct the array of derivatives of Chunk::Abstract
@derivatives = []