abinoam (Abinoam P. Marques Jr.)
- Login: abinoam
- Email: abinoam@gmail.com
- Registered on: 12/29/2010
- Last sign in: 10/29/2017
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/11/2014
-
04:53 AM Ruby Bug #9594: Segfault in 2.1.1 follows cont from debugger (Rails 4.0.3, debugger 1.6.6, rspec, os x mavericks 1.9.2)
- On debugger gem repository:
* https://github.com/cldwalker/debugger/issues/114 - Same segfault
* https://github.com/cldwalker/debugger/issues/47 - Ruby 2.0.0 is not officially supported by debugger gem
* https://github.com/cldwalker/...
09/29/2013
-
08:04 PM Ruby Feature #6721: Object#yield_self
May I give a name suggestion?
Does "tap!" make sense in english?
~~~Ruby
2.tap {|x| x*2 } # => 2
2.tap! {|x| x*2 } # => 4
~~~
The exclamation mark alerts that the return value is being changed.
12/29/2010
-
01:10 PM Ruby Feature #4222 (Closed): Irb tab completion support for the valid (but rare) obj::method invocation syntax
- =begin
class MyC
def my_method
true
end
end
a = MyC.new
# This is a valid method invocation syntax (rare, but valid)
a::my_method # => true
But when you type in irb
a::<press tab>
No tab-comp...