vajrasky (Vajrasky Kok)
- Login: vajrasky
- Email: sky.kok@speaklikeaking.com
- Registered on: 12/19/2013
- Last sign in: 03/07/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 1 | 1 |
| Reported issues | 0 | 6 | 6 |
Activity
01/08/2014
-
07:08 PM Ruby Feature #9383 (Closed): Add unit test for FileUtils.chown_R
- There is no unit tests for FileUtils.chown_R.
Here is the patch to add unit test for FileUtils.chown_R.
01/03/2014
-
05:58 PM Ruby Bug #9327: Why FileUtils.rmdir ignores Errno::ENOTEMPTY ?
- It is because we added :parents option in FileUtils.rmdir. See this ticket for detail: https://bugs.ruby-lang.org/issues/3178
I already created patch to improve this situation on that ticket.
12/27/2013
-
04:44 PM Ruby Misc #9307 (Closed): Add expression for Zlib.adler32 documentation
- In ext/zlib/zlib.c, line 435, there is a line:
* FIXME: expression.
So I replaced it with the expression of Zlib.adler32.
12/26/2013
-
07:36 PM Ruby Feature #9303 (Closed): Add unit test for chown method in test_fileutils.rb to test that it does not chmod recursively
- I was about to write unit test for FileUtils.chown_R then I realized that I needed to make sure FileUtils.chown does not chmod recursively first. Here is the patch.
12/24/2013
-
07:34 PM Ruby Feature #9292 (Closed): Add unit test for chown method in test_fileutils.rb with root account
- There is no unit test for chown method in test_fileutils.rb with root account. Chown with root account has unique behaviour which can change the user ownership of the file.
12/23/2013
-
05:40 PM Ruby Feature #9286 (Closed): Add unit test for test_chown in test_fileutils.rb with non-root account
- Right now, there is no unit tests for test_chown except for checking whether chown is singleton or not. Hereby, I attach the patch to test the capability of chown method with non-root user account. Non-root user can change the group owne...
12/19/2013
-
06:19 PM Ruby Feature #9263 (Closed): When creating symlink (or link) and the destination exists already, the error message is ambiguous
- Assume file 'link_b' already exists.
irb(main):001:0> File.symlink('a.txt', 'link_b')
Errno::EEXIST: File exists @ sys_fail2 - (a.txt, link_b)
from (irb):1:in `symlink'
from (irb):1
from /home/ethan/Documents/code/ruby/localrub...