kares (Karol Bucek)
- Login: kares
- Registered on: 09/16/2015
- Last sign in: 06/14/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
12/11/2025
-
03:01 PM Ruby Revision 4ab45e8f (git): [ruby/psych] bump snakeyaml-engine to 2.10 (jruby)
- https://github.com/ruby/psych/commit/506bf75ab2
11/04/2025
-
06:54 PM Ruby Revision 480080b5 (git): [ruby/stringio] fix: (jruby) failing to clean buffer's code-range
- same bug as: https://github.com/jruby/jruby/issues/9035
https://github.com/ruby/stringio/commit/65b144b175
09/25/2020
-
08:28 AM Ruby Revision f8d43e53 (git): unify json-java gemspec with the baseline
-
08:28 AM Ruby Revision 0089854f (git): [test] properly 'skip' test on JRuby
- an early return still caused ensure to execute,
setting JSON constant to `nil` for later tests!
12/28/2015
-
11:24 AM Ruby Bug #11906 (Closed): File.dirname separator stripping from the begining of path
- MRI strips additional leading slashes with `File.dirname` :
```
File.dirname "////foo/bar/baz" # => /foo/bar
File.dirname "////foo//bar/baz" # => /foo//bar
```
... issue arose as an incompatibility on JRuby's tracker: https://g...
09/16/2015
-
08:23 AM Ruby Bug #11532 (Closed): private_constant works after module is frozen
- ... and it probably should not allow for changing constant visibility since others such as `const_set` honour `freeze`
```
2.2.2 :001 > module M; C = '1'; D = '2'; private_constant :D; end
=> M
2.2.2 :002 > M.constants
=> [:C] ...