summaryrefslogtreecommitdiff
path: root/test/ruby
AgeCommit message (Expand)Author
2020-11-03Make Array methods return Array instances instead of subclass instancesJeremy Evans
2020-11-04Rightward assignment is replaced by one-line pattern matchingKazuki Tsujimoto
2020-11-03test/ruby/test_gc_compact.rb: suppress "assigned but unused variable"Yusuke Endoh
2020-11-02Add `GC.auto_compact= true/false` and `GC.auto_compact`Aaron Patterson
2020-11-01Pattern matching is no longer experimentalKazuki Tsujimoto
2020-10-29check isolated Proc more strictlyKoichi Sasada
2020-10-28Add Thread.ignore_deadlock accessorJeremy Evans
2020-10-28test/ruby/test_rational.rb: Prevent "assigned but unused variable"Yusuke Endoh
2020-10-26Allow non-argument endless-def with a space instead of parenthesesNobuyoshi Nakada
2020-10-26rational.c: convert a numerator to rational before calling fdiv in Kernel.Rat...Kenta Murata
2020-10-26Assoc pattern matching (#3703)Nobuyoshi Nakada
2020-10-23numeric.c, range.c: prohibit zero stepKenta Murata
2020-10-22rational.c: try converting by to_int in Rational() (#3684)Kenta Murata
2020-10-21Feature #16812: Allow slicing arrays with ArithmeticSequence (#3241)Kenta Murata
2020-10-20range.c: Fix an exception message in rb_range_beg_lenKenta Murata
2020-10-16test/ruby/test_syntax.rb: avoid "warning: assigned but unused variable"Yusuke Endoh
2020-10-16Adjust sp for `if true or ...`/`if false and ...`wanabe
2020-10-16Adjust sp for `x = false; y = (return until x unless x)` [Bug #16695]wanabe
2020-10-15Check encoding name to replicateNobuyoshi Nakada
2020-10-14remove uneffective testKoichi Sasada
2020-10-14ruby_vm_global_method_state is no longer needed.Koichi Sasada
2020-10-13test/ruby/test_fiber.rb: Suppress "assigned but unused variable" warningsYusuke Endoh
2020-10-12relax Fiber#transfer's restrictionKoichi Sasada
2020-10-12Make the test suite pass on real Android/Termux environmentYusuke Endoh
2020-10-12bignum.c (rb_int_powm): Integer#pow(0, 1) should return 0Yusuke Endoh
2020-10-12Prohibit setter method names in all kinds of endless methodsNobuyoshi Nakada
2020-10-03Fix assert_ruby_status usage in 174ae0f5775cc7af7d197963a8f87b7d1972c268Kazuhiro NISHIYAMA
2020-10-03Remove known use-after-poison bugNobuyoshi Nakada
2020-10-02Ensure that the comparison succeeded [Bug #17205]Nobuyoshi Nakada
2020-09-30Unfreeze string-literal-only interpolated string-literalNobuyoshi Nakada
2020-09-30Fix unsigned int overflow in error message for chrPeter Zhu
2020-09-28Pass ASAN options to child environmentsAaron Patterson
2020-09-28Make Warning.warn accept only category keywordJeremy Evans
2020-09-28Switch conflicting chdir warning to RuntimeErrorJeremy Evans
2020-09-27Revert the first diff of "Use Tempfile.create instead of Tempfile.open in tes...Benoit Daloze
2020-09-26Use Tempfile.create instead of Tempfile.open in test_io.rbBenoit Daloze
2020-09-25test/ruby/test_enumerator.rb: check the deprecation warningYusuke Endoh
2020-09-25test/ruby/test_memory_view.rb: prevent "assigned but unused variable - members"Yusuke Endoh
2020-09-25test/ruby/test_enumerator.rb: remove capture_io that is no longer neededYusuke Endoh
2020-09-25freeze all Range objects.v3_0_0_preview1Koichi Sasada
2020-09-25Buffer protocol proposal (#3261)Kenta Murata
2020-09-25Disable deprecation warning by the default [Feature #16345]Nobuyoshi Nakada
2020-09-22Revert "Prevent SystemStackError when calling super in module with activated ...Jeremy Evans
2020-09-21Make hash returned by Hash#transform_values not have a defaultJeremy Evans
2020-09-16Fix assertion failed in Complex.polar without NDEBUG (#3551)Kenta Murata
2020-09-16RUBY_ISEQ_DUMP_DEBUG=to_binary never kept the debug information for String li...Benoit Daloze
2020-09-16Revert "skip on RUBY_ISEQ_DUMP_DEBUG=to_binary"Benoit Daloze
2020-09-16skip on RUBY_ISEQ_DUMP_DEBUG=to_binaryKoichi Sasada
2020-09-15Interpolated strings are no longer frozen with frozen-string-literal: trueBenoit Daloze
2020-09-11Let String#slice! return nil (#3533)Soutaro Matsumoto