alex-pub.ruby-bugs@reflexion.net (Alex Pogrebnyak)
- Login: alex-pub.ruby-bugs@reflexion.net
- Email: alex-pub.ruby-bugs@reflexion.net
- Registered on: 09/02/2014
- Last sign in: 09/02/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/04/2014
-
07:23 PM Ruby Bug #10194: OpenStruct does not throw an exception when calling missing method with no arguments.
- Thanks for mentioning Hashie gem. It does exactly what I need.
09/02/2014
-
04:44 PM Ruby Bug #10194 (Rejected): OpenStruct does not throw an exception when calling missing method with no arguments.
- Below is the sample that shows the problem:
#!/usr/bin/env ruby
require 'ostruct'
class TestMethodMissing < OpenStruct
def initialize ()
super(
{ "foo" => "bar" }
)
...