You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also, nested hashes can still be accessed as hashes:
21
-
22
-
ros.a_as_a_hash # { :b => 'c' }
23
-
}
24
-
s.email=%q{aetherknight@gmail.com}
11
+
s.authors=["William (B.J.) Snow Orvis"]
12
+
s.date="2012-10-24"
13
+
s.description="RecursiveOpenStruct is a subclass of OpenStruct. It differs from\nOpenStruct in that it allows nested hashes to be treated in a recursive\nfashion. For example:\n\n ros = RecursiveOpenStruct.new({ :a => { :b => 'c' } })\n ros.a.b # 'c'\n\nAlso, nested hashes can still be accessed as hashes:\n\n ros.a_as_a_hash # { :b => 'c' }\n"
14
+
s.email="aetherknight@gmail.com"
25
15
s.extra_rdoc_files=[
26
16
"LICENSE.txt",
27
17
"README.rdoc"
@@ -35,16 +25,17 @@ Also, nested hashes can still be accessed as hashes:
0 commit comments