s.mackesey (Sean Mackesey)
- Login: s.mackesey
- Registered on: 06/04/2016
- Last sign in: 06/04/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/04/2016
-
04:30 PM Ruby Bug #12458: ::new returns `nil` when first argument is a String '*'
- Sorry, looks like this is actually due to bug in rspec-mocks rather than Ruby itself, so I think this can be closed.
-
04:09 PM Ruby Bug #12458 (Third Party's Issue): ::new returns `nil` when first argument is a String '*'
- I encountered this bug on the 2.4.0-dev branch. It does not exist in 2.3.0.
I have a class with this initialize method:
~~~ruby
def initialize(str, **kwargs)
@raw = str
kwargs.each { |k,v| instance_variable_set("@#{k}"...