| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-03-28 | Guard RbConfig spec unless installed | Nobuyoshi Nakada | |
| 2020-03-28 | Update to ruby/spec@ec84479 | Benoit Daloze | |
| 2020-03-15 | Enclosed version constant | Nobuyoshi Nakada | |
| 2020-03-15 | Added guard against [Bug #16497] | Nobuyoshi Nakada | |
| 2020-03-15 | [ruby/stringio] StringIO#initialize default to the source string encoding | Jean Boussier | |
| [Bug #16497] https://github.com/ruby/stringio/commit/4958a5ccab | |||
| 2020-03-12 | Update some syslog tests to absurb the format change of FreeBSD syslog | Yusuke Endoh | |
| FreeBSD ``` $ ruby -rsyslog -e 'Syslog.open("rubyspec", Syslog::LOG_PERROR) {|s| s.log(Syslog::LOG_ALERT, "Hello") }' rubyspec 78462 - - Hello ``` Linux ``` $ ruby -rsyslog -e 'Syslog.open("rubyspec", Syslog::LOG_PERROR) {|s| s.log(Syslog::LOG_ALERT, "Hello") }' rubyspec: Hello ``` https://github.com/freebsd/freebsd/commit/591ef7c8076109cff3c41f9bb50da996a34121e9 | |||
| 2020-03-10 | Added version guard for OpenSSL::Config | Nobuyoshi Nakada | |
| 2020-02-28 | Update to ruby/spec@41bf282 | Benoit Daloze | |
| 2020-02-23 | Warn non-nil `$/` [Feature #14240] | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2920 | |||
| 2020-02-23 | Warn non-nil `$\` [Feature #14240] | Nobuyoshi Nakada | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2920 | |||
| 2020-02-13 | spec/ruby/library/socket/constants/constants_spec.rb: skip on Android | Yusuke Endoh | |
| IP_MAX_MEMBERSHIPS seems not to be defined on Android | |||
| 2020-02-13 | spec/ruby/library/socket/addrinfo/getnameinfo_spec.rb: skip on Android | Yusuke Endoh | |
| FreeBSD's GETNAMEINFO(3) says: > If a link-layer address or UNIX-domain address is passed to > getnameinfo(), its ASCII representation will be stored in host. The > string pointed to by serv will be set to the empty string if non-NULL; > flags will always be ignored. Android seems to behave like FreeBSD. | |||
| 2020-02-13 | spec/ruby/library/etc/: skip the specs related to group on Android | Yusuke Endoh | |
| User/group system on Android seems different from normal Linux. | |||
| 2020-02-13 | spec/ruby/library/socket/addrinfo: skip the specs that uses SOCK_SEQPACKET ↵ | Yusuke Endoh | |
| on Android SOCK_SEQPACKET seems not to be supported on Android | |||
| 2020-02-13 | spec/ruby/library/syslog: skip the specs that use LOG_PERROR on Android | Yusuke Endoh | |
| LOG_PERROR is defined on Android, but not implemented yet. See also f3c4e620ac612eab6370b1fb82feaa4e651542bb. | |||
| 2020-02-13 | spec/ruby/library/etc/confstr_spec.rb: skip on Android | Yusuke Endoh | |
| There seems to be no _CS_PATH on Android. | |||
| 2020-02-06 | [ruby/spec] Don't care about return values | Nobuyoshi Nakada | |
| RDoc says nothing about them. Added an example that ConditionVariable#wait can be woken up by ConditionVariable#signal, instead. | |||
| 2020-02-06 | [ruby/spec] Check by Thread#stop? | Nobuyoshi Nakada | |
| Check if threads are stopped by Thread#stop? instead of the status name. | |||
| 2020-01-28 | Update to ruby/spec@f8a2d54 | Benoit Daloze | |
| 2020-01-23 | Guarded the examples for deprecated "taint" | Nobuyoshi Nakada | |
| 2020-01-12 | Ignore rexml examples on ruby/spec | Hiroshi SHIBATA | |
| Notes: Merged: https://github.com/ruby/ruby/pull/2832 | |||
| 2019-12-27 | Update to ruby/spec@d419e74 | Benoit Daloze | |
| 2019-12-20 | Fixed misspellings | Nobuyoshi Nakada | |
| Fixed misspellings reported at [Bug #16437], only in ruby and rubyspec. | |||
| 2019-12-17 | close datasocket on stor of server side | NARUSE, Yui | |
| 2019-11-30 | Update to ruby/spec@4eec3dc | Benoit Daloze | |
| 2019-11-18 | Deprecate taint/trust and related methods, and make the methods no-ops | Jeremy Evans | |
| This removes the related tests, and puts the related specs behind version guards. This affects all code in lib, including some libraries that may want to support older versions of Ruby. Notes: Merged: https://github.com/ruby/ruby/pull/2476 | |||
| 2019-10-31 | spec: Fix syntax errors | Yusuke Endoh | |
| Follow up of 473882e01f7e55753733e2607ace633b5041f11f | |||
| 2019-10-31 | Skip tainted examples for stringio | Hiroshi SHIBATA | |
| 2019-10-26 | Update to ruby/spec@28a728b | Benoit Daloze | |
| 2019-10-24 | Update date specs | Jeremy Evans | |
| Allow Date.new spec to run on 2.7. Separate Date.valid_jd? specs, since 2.7 is now stricter and requires numeric value for the first argument. Notes: Merged: https://github.com/ruby/ruby/pull/2605 | |||
| 2019-10-24 | Temporarily skipped with upstream changes of Date library. | Hiroshi SHIBATA | |
| 2019-10-24 | Revert "Fix Fiber#transfer" | Koichi Sasada | |
| This reverts commit fa8ac91e957a076f6df1adaecad7896817138009. Previous behavior is intentional. | |||
| 2019-10-21 | Fix Fiber#transfer | Jeremy Evans | |
| Fiber#transfer previously made it impossible to resume the fiber if it was transferred to (no resuming the target of Fiber#transfer). However, the documentation specifies that you cannot resume a fiber that has transferred to another fiber (no resuming the source of Fiber#transfer), unless control is transferred back. Fix the code by setting the transferred flag on the current/source fiber, and unsetting the transferred flag on the target fiber. Fixes [Bug #9664] Fixes [Bug #12555] Notes: Merged: https://github.com/ruby/ruby/pull/2588 Merged-By: jeremyevans <code@jeremyevans.net> | |||
| 2019-10-14 | Import StringScanner 1.0.3 (#2553) | Sutou Kouhei | |
| Notes: Merged-By: kou <kou@clear-code.com> | |||
| 2019-10-03 | Revert "Simplify bin_path_spec.rb guard" | Takashi Kokubun | |
| This reverts commit a56d742e69aa8a3a1fe92fc515d93f6e51cf5fbc. I was checking the CI result of the wrong revision. It actually worked fine https://ci.appveyor.com/project/ruby/ruby/builds/27866303. Never mind... | |||
| 2019-10-03 | Simplify bin_path_spec.rb guard | Takashi Kokubun | |
| For some reason the guard_not seems not working as expected https://ci.appveyor.com/project/ruby/ruby/builds/27866153/job/v6wa6q6p7b7n7r37 | |||
| 2019-10-03 | bin_path_spec.rb has failed from the beginning | Takashi Kokubun | |
| for mswin. This spec is not valid for mswin platform. https://ci.appveyor.com/project/ruby/ruby/builds/27748774/job/85khngfpc806m5lj | |||
| 2019-09-29 | Update to ruby/spec@2699ea4 | Benoit Daloze | |
| 2019-09-29 | Update to ruby/spec@34e6246 | Benoit Daloze | |
| 2019-09-29 | Skip default gemspecs spec if the default_specifications_dir cannot be found | Benoit Daloze | |
| 2019-09-29 | Update to ruby/spec@e69a14c | Benoit Daloze | |
| 2019-09-29 | Update to ruby/spec@519df35 | Benoit Daloze | |
| 2019-09-20 | Removed Scanf from the ruby repository. | Hiroshi SHIBATA | |
| 2019-09-20 | Removed CMath from the ruby repository. | Hiroshi SHIBATA | |
| 2019-09-08 | Removed useless braces to suppress a warning | Nobuyoshi Nakada | |
| 2019-08-09 | Fix typo: duplicated the [skip-ci] | ohbarye | |
| 2019-07-27 | Update to ruby/spec@875a09e | Benoit Daloze | |
| 2019-07-15 | Fixed ruby/spec for Logger::LogDevice changes. | Hiroshi SHIBATA | |
| 2019-06-29 | Fix predicate to assert if object is same | Nobuyoshi Nakada | |
| 2019-06-29 | Fix predicate to assert if object is same | Nobuyoshi Nakada | |
