aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ostruct.rb
diff options
context:
space:
mode:
authormarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-12 21:40:50 +0000
committermarcandre <marcandre@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-12-12 21:40:50 +0000
commit13d8bb03859255049dd10046a0a1a24352ec8110 (patch)
tree69b6080f22c9ac2891427cfe1159e65ffa1ad38d /lib/ostruct.rb
parent96c4fa0b0905e6f587fcacfa8acd2e384057aeb5 (diff)
downloadruby-13d8bb03859255049dd10046a0a1a24352ec8110.tar.gz
* lib/ostruct.rb: Have OpenStruct#dig raise if argument is not a symbol
nor a string. See [#11762] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53063 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/ostruct.rb')
-rw-r--r--lib/ostruct.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ostruct.rb b/lib/ostruct.rb
index 0e13f40692..84244b3d9e 100644
--- a/lib/ostruct.rb
+++ b/lib/ostruct.rb
@@ -227,7 +227,7 @@ class OpenStruct
begin
name = name.to_sym
rescue NoMethodError
- return
+ raise TypeError, "#{name} is not a symbol nor a string"
end
@table.dig(name, *names)
end