1. 11 7月, 2017 10 次提交
  2. 10 7月, 2017 8 次提交
  3. 09 7月, 2017 19 次提交
  4. 08 7月, 2017 3 次提交
    • E
      Don't call register on custom drivers · 91d22b78
      eileencodes 提交于
      It's possible for developers toadd a custom driver and then call it
      using `driven_by`. Because we were only skipping `register` for
      `:rack_test` that meant any custom driver would attempt to be registered
      as well.
      
      The three listed here are special because Rails registers them with
      special options. If you're registering your own custom driver then you
      don't want to separately register that driver.
      
      Fixes #29688
      91d22b78
    • E
      Merge pull request #29680 from koic/update_default_app_files_in_app_generator_test · a136c291
      Eileen M. Uchitelle 提交于
      Update default app files in app_generator_test
      a136c291
    • S
      Clarify i18n guide for how pluralization rules work by default · 6a8d618b
      Sage Ross 提交于
      The guide misleadingly indicates that the I18n gem will apply the CLDR pluralization rules for each language. This is not the case; only the English algorithm, with support for :zero, :one, and :other, is available by default. Locale-specific pluralization rules require additional configuration and must be supplied by the application (or by another gem).
      6a8d618b