aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/sisu/v3/shared_xml.rb
diff options
context:
space:
mode:
authorRalph Amissah <ralph@amissah.com>2012-10-01 15:43:19 -0400
committerRalph Amissah <ralph@amissah.com>2012-10-01 15:43:19 -0400
commit6b2c44794b8aeeca96a9b3114b87b3c1df69fd9d (patch)
tree20ffa7c21eda17b340e473733088fa80986cc0d6 /lib/sisu/v3/shared_xml.rb
parentv3: cosmetic code, if true ; x, remove semicolons replace with "then" (diff)
v3: cosmetic code, .is_a?(X) replaces .class==X (& some defined? & nil? tests)
Diffstat (limited to 'lib/sisu/v3/shared_xml.rb')
-rw-r--r--lib/sisu/v3/shared_xml.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sisu/v3/shared_xml.rb b/lib/sisu/v3/shared_xml.rb
index 959170b6..6860d80c 100644
--- a/lib/sisu/v3/shared_xml.rb
+++ b/lib/sisu/v3/shared_xml.rb
@@ -110,7 +110,7 @@ module SiSU_XML_Munge
def utf8(dob='')
if @sys.locale =~/utf-?8/i # instead ucs for utf8 # String#encode Iñtërnâtiônàlizætiøn
str=if defined? dob.obj then dob.obj
- elsif dob.class==String then dob
+ elsif dob.is_a?(String) then dob
end
if str
#¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûü
@@ -217,7 +217,7 @@ module SiSU_XML_Munge
dob=if defined? dob.obj
dob.obj=str
dob
- elsif dob.class==String
+ elsif dob.is_a?(String)
str
end
dob