r.smitala (Radovan Smitala)
- Login: r.smitala
- Registered on: 07/29/2016
- Last sign in: 04/28/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
09/21/2017
-
07:25 AM Ruby Feature #12637: Unified and consistent method naming for safe and dangerous methods
- duerst (Martin Dürst) wrote:
> r.smitala (Radovan Smitala) wrote:
> ...
You are right about migration. I don't count all variations of method using.
>
> ...
I think it is why Ruby popularity stagnatess or slightly decreases. No ne...
09/20/2017
-
10:14 AM Ruby Feature #12637: Unified and consistent method naming for safe and dangerous methods
- matz (Yukihiro Matsumoto) wrote:
> Ruby is not Scheme.
> ...
I know my reply could be annoying. I am apologise before.
After a year of using Ruby in mid-sized project we had some unlikely issues with mutating receiver. Because we are ...
03/01/2017
-
07:00 AM Ruby Feature #12515: Create "Boolean" superclass of TrueClass / FalseClass
- Shyouhei Urabe wrote:
> Radovan Smitala wrote:
> ...
Just deprecated warnings for Fixnum and Bignum :) And that is OK. Rails is biggest project/framework/tool in Ruby community. It takes some time to be fully compatible, not only for I...
02/23/2017
-
04:49 PM Ruby Feature #12515: Create "Boolean" superclass of TrueClass / FalseClass
- You have in some cases true.
There should be some circumstances where implemented Boolean class should be problematic. But many of existed gems just reopen class and life goes on. Rails 5 isn't till now compatible with Ruby 2.4 with i...
02/18/2017
-
03:27 PM Ruby Bug #13220: Enhance support of Unicode strings manipulation
- I tested all cases with normalized strings and they works except this examples:
"١".to_f and other to numeric conversion.
Unicode character is arabic-inding digit one. but i think it is ok because any japan numerals like 一 (ichi) a... -
02:59 PM Ruby Bug #13220: Enhance support of Unicode strings manipulation
- Shyouhei Urabe wrote:
> Radovan Smitala wrote:
> ...
This new information appears on blogpost:
> NOTE: After publication, some readers pointed out that many of the failures I mentioned wouldn't have happened if I would have normaliz...
02/17/2017
-
06:33 AM Ruby Bug #13220: Enhance support of Unicode strings manipulation
- Yes i know its little bit large issue.
I'm not sure how to handle it and separate problematic parts into content blocks.
Or just bug by bug what is 33 issues.
It's not my blog post. But when i tried some testing cases they were re...
02/16/2017
-
10:34 PM Ruby Bug #13220 (Feedback): Enhance support of Unicode strings manipulation
- Hi,
last days, Starr Horne posted very interesting testing results about manipulation unicode strings in Ruby 2.4.
And many methods doesn't work as excepted.
Article:
http://blog.honeybadger.io/ruby-s-unicode-support/
08/01/2016
-
09:29 AM Ruby Feature #12637: Unified and consistent method naming for safe and dangerous methods
- Shyouhei Urabe wrote:
> Radovan Smitala wrote:
> ...
It is not about fill. New method name with same function just fragmentize language.
It is about manner which is used in Ruby language. Idea about "safe" and "dangerous" methods is v... -
08:07 AM Ruby Feature #12637: Unified and consistent method naming for safe and dangerous methods
- Shyouhei Urabe wrote:
> Array#clear being destructive is the nature of that method. It makes no sense to have its bang variant.
> ...
I understand that bang (dangerous) methods are variation to normal methods. But in some circumstance...