Another Textarea Tweak and a Ruby 1.9 Fix

This commit is contained in:
Jacques Distler 2009-12-12 15:28:05 -06:00
parent 60a233a917
commit a58bee7437
2 changed files with 9 additions and 7 deletions

View file

@ -1,5 +1,8 @@
#coding: utf-8
# Contains all the methods for finding and replacing wiki words
require 'stringsupport'
module WikiWords
# In order of appearance: Latin, greek, cyrillic, armenian
I18N_HIGHER_CASE_LETTERS =
@ -18,7 +21,7 @@ module WikiWords
CAMEL_CASED_WORD_BORDER = /([a-z#{I18N_LOWER_CASE_LETTERS}])([A-Z#{I18N_HIGHER_CASE_LETTERS}])/u
def self.separate(wiki_word)
wiki_word.gsub(CAMEL_CASED_WORD_BORDER, '\1 \2')
wiki_word.dup.as_utf8.gsub(CAMEL_CASED_WORD_BORDER, '\1 \2')
end
end