laise (Alexey Chernenkov)
- Login: laise
- Email: a.y.chernenkov@gmail.com
- Registered on: 06/06/2013
- Last sign in: 07/28/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/20/2015
-
07:02 AM Ruby Feature #6373: public #self
- -1
For me it would be better to accept #47 - it improves good old #tap and introduces a new #itself with block.
Copied here:
~~~
def tap
yield self if block_given?
self
end
def itself
if block_given?
yield sel...
08/19/2015
-
03:15 PM Ruby Bug #11402: Seg Fault on intensive numeric calculation
- Kenta Murata wrote:
> Alexey, please give me your script to produce this issue.
The script is running on a daily basis. I upgraged bigdecimal to 1.2.7 and have not seen the exception since.
07/31/2015
-
07:41 AM Ruby Bug #11402: Seg Fault on intensive numeric calculation
- Kenta Murata wrote:
> Alexey, please give me your script to produce this issue.
It is a part of production ready app and has too many local dependencies. I have no short script to reproduce that ( -
07:32 AM Ruby Bug #11402: Seg Fault on intensive numeric calculation
- Nobuyoshi Nakada wrote:
> You load bigdecimal-1.2.5, which is out-of-date.
> ...
Ok, thanks. I'll try to update bigdecimal
07/29/2015
-
12:51 PM Ruby Bug #11402: Seg Fault on intensive numeric calculation
- .crash file from ~/Library/Logs/DiagnosticReports/ attached
07/28/2015
-
03:23 PM Ruby Bug #11402 (Closed): Seg Fault on intensive numeric calculation
- Occur several times:
~~~
[BUG] Segmentation fault at 0x00000000000000
ruby 2.1.4p265 (2014-10-27 revision 48166) [x86_64-darwin13.0]
-- Crash Report log information --------------------------------------------
See Crash Repor...
06/06/2013
-
02:45 AM Ruby Feature #6373: public #self
- Quote: "I think that tap method can be improved to be used without block yielding self."
+1
It is a VERY usefull feature! Can't understand why #tap still need to be used with block only.