1. 02 9月, 2020 1 次提交
  2. 10 6月, 2020 1 次提交
  3. 20 5月, 2020 1 次提交
  4. 19 5月, 2020 1 次提交
  5. 18 5月, 2020 1 次提交
  6. 12 5月, 2020 2 次提交
  7. 03 4月, 2020 1 次提交
  8. 31 3月, 2020 1 次提交
  9. 30 3月, 2020 1 次提交
  10. 13 2月, 2020 2 次提交
  11. 11 2月, 2020 1 次提交
  12. 08 2月, 2020 1 次提交
  13. 19 1月, 2020 1 次提交
  14. 01 1月, 2020 1 次提交
  15. 28 12月, 2019 1 次提交
  16. 17 12月, 2019 1 次提交
  17. 16 12月, 2019 1 次提交
    • K
      Tune ActionText::Generators::InstallGenerator · 64ff6bc4
      Kasper Timm Hansen 提交于
      * Use rails_command instead of run (will also print "rails" in the output)
      * Generally tune colors: print green for the status updates,
        red for the warning to get the eye.
      * Combine migration copying into running one task and pass FROM.
        Generates "create_tables.engine_name.rb" migrations.
      * Slim some variables and style the copy_file invocation.
      64ff6bc4
  18. 13 12月, 2019 1 次提交
    • K
      Add method to confirm rich text content existence by adding ? after content name · 07533a3d
      Kyohei Toyoda 提交于
      This change introduces a rich text object to make
      it easier to confirm it context is existing or not.
      
      If we have a class like below.
      
      class Information < ApplicationRecord
        has_rich_text :notes
      end
      
      Before:
      i = Information.new
      i.notes? => NoMethodError
      i.notes = "Some sample text"
      i.notes.present? => true
      
      After:
      i = Information.new
      i.notes? => false
      
      i.notes = "Some sample text"
      i.notes? => true
      07533a3d
  19. 07 12月, 2019 1 次提交
  20. 03 12月, 2019 1 次提交
  21. 15 11月, 2019 4 次提交
  22. 12 10月, 2019 1 次提交
  23. 02 10月, 2019 2 次提交
  24. 24 9月, 2019 2 次提交
  25. 27 8月, 2019 1 次提交
    • Y
      Ignore SQLite3 database files generated by parallel testing · c5e3c537
      Yasuo Honda 提交于
      Rails 6.0 introduces parallel testing and the default degree of parallelism is configured based on the number of CPU.
      refer https://github.com/rails/rails/pull/34735 https://github.com/rails/rails/pull/31900
      
      When any minitest executed under the OS where 2 or more CPU available,
      SQLite 3 database files are not git-ignored.
      
      Also updated other files which ignores SQLite database files.
      
      * Steps to reproduce
      
      ```
      $ git clone https://github.com/yahonda/rep_ignore_sqlite3_databases.git
      $ cd rep_ignore_sqlite3_databases/
      $ bin/rails test
      $ git status
      ```
      
      * Expected behavior:
      
      - No `Untracked files:`
      
      * Actual behavior:
      
      - SQLite 3 database files appeared
      
      ```
      $ git status
      On branch master
      Untracked files:
        (use "git add <file>..." to include in what will be committed)
      
      	db/test.sqlite3-0
      	db/test.sqlite3-1
      	db/test.sqlite3-2
      	db/test.sqlite3-3
      	db/test.sqlite3-4
      	db/test.sqlite3-5
      
      nothing added to commit but untracked files present (use "git add" to track)
      $
      ```
      c5e3c537
  26. 24 8月, 2019 1 次提交
  27. 23 8月, 2019 1 次提交
  28. 05 8月, 2019 1 次提交
  29. 01 8月, 2019 1 次提交
  30. 30 7月, 2019 1 次提交
  31. 29 7月, 2019 2 次提交
  32. 08 7月, 2019 1 次提交