summaryrefslogtreecommitdiff
path: root/lib/soap/mapping
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-20 17:36:36 +0000
commitc09cea5e1ba4e6d103fad9e6c6cbf29560abf78b (patch)
treef23af24cc3d193da3cc59197e065e2b986e8bb5d /lib/soap/mapping
parentb5d9cbe8e8bb5c0eb826ce68a81aa5579359b5e8 (diff)
* object.c (rb_mod_attr): make Module#attr to be an alias to
attr_reader. [RCR#331] * ruby.h: export classes/modules to implement sandbox. [ruby-core:08283] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10577 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/soap/mapping')
-rw-r--r--lib/soap/mapping/registry.rb2
-rw-r--r--lib/soap/mapping/rubytypeFactory.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/soap/mapping/registry.rb b/lib/soap/mapping/registry.rb
index 823e80666d..a4183fea57 100644
--- a/lib/soap/mapping/registry.rb
+++ b/lib/soap/mapping/registry.rb
@@ -522,7 +522,7 @@ private
list = (class << obj; self; end).ancestors - obj.class.ancestors
unless list.empty?
node.extraattr[RubyExtendName] = list.collect { |c|
- if c.name.empty?
+ unless c.name
raise TypeError.new("singleton can't be dumped #{ obj }")
end
c.name
diff --git a/lib/soap/mapping/rubytypeFactory.rb b/lib/soap/mapping/rubytypeFactory.rb
index 61c21d8b20..6c30f23a7b 100644
--- a/lib/soap/mapping/rubytypeFactory.rb
+++ b/lib/soap/mapping/rubytypeFactory.rb
@@ -262,7 +262,7 @@ private
end
def unknownobj2soap(soap_class, obj, info, map)
- if obj.class.name.empty?
+ unless obj.class.name
raise TypeError.new("can't dump anonymous class #{obj}")
end
singleton_class = class << obj; self; end