summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 08:54:59 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-03-29 08:54:59 +0000
commit4c1ac0bc07eb7ae03684761351953418ad5deb1b (patch)
treeeecb2f961856c0af1c34c3a00e79e6c4d9e2232c /lib
parent5d699f8a3a7ff32ebc36b7a92ececafeb81d9bab (diff)
merge revision(s) 53366:[Backport #11884]
* lib/ostruct.rb (OpenStruct): make respond_to? working on just-allocated objects for workaround of Psych. [ruby-core:72501] [Bug #11884] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54387 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/ostruct.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/ostruct.rb b/lib/ostruct.rb
index 5aea0465bd..e7b8ed4609 100644
--- a/lib/ostruct.rb
+++ b/lib/ostruct.rb
@@ -71,6 +71,11 @@
# of these properties compared to using a Hash or a Struct.
#
class OpenStruct
+ # :nodoc:
+ class << self
+ alias allocate new
+ end
+
#
# Creates a new OpenStruct object. By default, the resulting OpenStruct
# object will have no attributes.