1. 12 4月, 2017 1 次提交
  2. 27 3月, 2017 1 次提交
  3. 23 3月, 2017 1 次提交
    • C
      Remove -j (--javascript) option from `rails new` · 42198064
      claudiob 提交于
      The "-j" option was added 5 years ago (https://github.com/rails/rails/commit/d9c39c3a)
      when we wanted to support prototype-rails and jquery-rails.
      Prototype is not as popular and jQuery is not a requirement anymore.
      Still the "-j" option can be used to install *any* gem that ends in "-rails".
      
      This "might" open security issues and does not bring great benefits anymore.
      
      If you know which "-rails"-ending gem you want to install, you can manually
      add it to the Gemfile just like any other gem.
      42198064
  4. 22 3月, 2017 1 次提交
  5. 19 3月, 2017 1 次提交
    • Y
      Correctly check whether key is defined in configuration · 53e6fe96
      yuuji.yaginuma 提交于
      It can not check correctly with `defined?`
      
      ```ruby
      irb(main):001:0> Rails.application.config.active_record
      => {:maintain_test_schema=>true, :belongs_to_required_by_default=>true}
      irb(main):002:0> defined?(Rails.application.config.active_record)
      => nil
      ```
      
      Follow up to #28469
      53e6fe96
  6. 18 3月, 2017 1 次提交
    • M
      Track the version-compatible config settings inside railties · 4183ee88
      Matthew Draper 提交于
      Instead of forcing new applications to carry an initializer that just
      switches things to what their default "should" be, we can handle it
      internally.
      
      The initializer is then only used by upgraders: it shows what the new
      default would be (commented out), while their upgraded application
      continues to operate as it did before.
      
      Under this model, a multiply-upgraded application could accumulate
      several new_framework_defaults_*.rb files, for each release series it
      has traversed. A given release series only needs to generate the latest,
      though, because we don't support `rails app:upgrade` while skipping
      releases.
      4183ee88
  7. 15 3月, 2017 1 次提交
  8. 24 2月, 2017 1 次提交
  9. 23 2月, 2017 2 次提交
  10. 22 2月, 2017 1 次提交
  11. 21 2月, 2017 2 次提交
  12. 08 2月, 2017 1 次提交
  13. 03 2月, 2017 1 次提交
  14. 23 1月, 2017 1 次提交
  15. 13 1月, 2017 1 次提交
  16. 10 1月, 2017 2 次提交
  17. 01 1月, 2017 1 次提交
  18. 23 12月, 2016 1 次提交
  19. 09 12月, 2016 2 次提交
  20. 02 12月, 2016 1 次提交
  21. 29 11月, 2016 3 次提交
  22. 22 11月, 2016 1 次提交
  23. 13 11月, 2016 1 次提交
  24. 02 11月, 2016 1 次提交
  25. 25 10月, 2016 1 次提交
  26. 21 10月, 2016 1 次提交
  27. 14 9月, 2016 2 次提交
  28. 16 8月, 2016 1 次提交
  29. 14 8月, 2016 1 次提交
  30. 13 8月, 2016 1 次提交
  31. 07 8月, 2016 2 次提交
  32. 27 7月, 2016 1 次提交