2018/10/19分のコミットです。
CHANGELOGにのったコミットは以下の通りです。
Deprecate Unicode's #pack_graphemes and #unpack_graphemes methods
activesupport/lib/active_support/multibyte/unicode.rb
の修正です。
ActiveSupport::Multibyte::Unicode#pack_graphemes
、ActiveSuppport::Multibyte::Unicode#unpack_graphemes
がdeprecateになりました。
今後は、Ruby標準の処理(array.flatten.pack("U*")
、及び、string.scan(/\X/).map(&:codepoints)
)を使う必要があります。
Merge pull request #34249 from anthonygharvey/fix_testing_guide_typo
rails guideのTesting Rails Applications
の修正です。
The Basic Test Case
の項のタイポを修正しています。
Merge pull request #34256 from y-yagi/make_aj_integration_tests_work_on_ci_2
Active Jobのテスト、及び、.travis.yml
の修正です。
幾つかのActive JobのintegrationテストがCI上で動作しなくなっていたのを修正しています。
Avoid running bundler on tests that don't need it
railties/test/generators/app_generator_test.rb
の修正です。
AppGenerator
にdev
オプションを指定した場合のテストで、不要な場合はbundle install
を実行しないよう修正しています。bundle install
は実行に時間が掛かる為。