1. 08 3月, 2017 1 次提交
  2. 24 2月, 2017 1 次提交
  3. 07 2月, 2017 1 次提交
  4. 04 2月, 2017 1 次提交
  5. 31 1月, 2017 9 次提交
  6. 30 1月, 2017 1 次提交
  7. 29 1月, 2017 1 次提交
  8. 28 1月, 2017 1 次提交
  9. 15 1月, 2017 2 次提交
  10. 12 1月, 2017 1 次提交
  11. 06 1月, 2017 1 次提交
  12. 05 1月, 2017 1 次提交
  13. 04 1月, 2017 1 次提交
  14. 03 1月, 2017 1 次提交
    • F
      Fix generator command for nested (namespaced) rails engine · 085546df
      Fumiaki MATSUSHIMA 提交于
      If we create nested (namespaced) rails engine such like bukkits-admin,
      `bin/rails g scaffold User name:string age:integer`
      will create
      `bukkits-admin/app/controllers/bukkits/users_controller.rb`
      but it should create
      `bukkits-admin/app/controllers/bukkits/admin/users_controller.rb`.
      
      In #6643, we changed `namespaced_path` as root path
      because we supposed application_controller is always in root
      but nested rails engine's application_controller will not.
      085546df
  15. 31 12月, 2016 1 次提交
  16. 24 12月, 2016 2 次提交
  17. 06 12月, 2016 1 次提交
  18. 30 11月, 2016 1 次提交
  19. 29 10月, 2016 1 次提交
  20. 14 9月, 2016 1 次提交
  21. 02 9月, 2016 1 次提交
  22. 25 8月, 2016 1 次提交
    • R
      Add load hooks to all tests classes · 0510208d
      Rafael Mendonça França 提交于
      Usually users extends tests classes doing something like:
      
          ActionView::TestCase.include MyCustomTestHelpers
      
      This is bad because it will load the ActionView::TestCase right aways
      and this will load ActionController::Base making its on_load hooks to
      execute early than it should.
      
      One way to fix this is using the on_load hooks of the components like:
      
          ActiveSupport.on_load(:action_view) do
            ActionView::TestCase.include MyCustomTestHelpers
          end
      
      The problem with this approach is that the test extension will be only
      load when ActionView::Base is loaded and this may happen too late in the
      test.
      
      To fix this we are adding hooks to people extend the test classes that
      will be loaded exactly when the test classes are needed.
      0510208d
  23. 16 8月, 2016 1 次提交
  24. 09 8月, 2016 1 次提交
  25. 07 8月, 2016 3 次提交
  26. 06 7月, 2016 1 次提交
  27. 07 6月, 2016 1 次提交
    • J
      Do not suggest nonsensical OpenSSL verify modes [ci skip] · 5e3fb2f7
      Jonne Haß 提交于
      SSL_set_verify(3) explains:
      
      SSL_VERIFY_FAIL_IF_NO_PEER_CERT
        Server mode: if the client did not return a certificate, the TLS/SSL
      handshake is immediately terminated with a "handshake failure" alert.
      This flag must
        be used together with SSL_VERIFY_PEER.
      
        Client mode: ignored
      
      SSL_VERIFY_CLIENT_ONCE
        Server mode: only request a client certificate on the initial TLS/SSL
      handshake. Do not ask for a client certificate again in case of a
      renegotiation.
        This flag must be used together with SSL_VERIFY_PEER.
      
        Client mode: ignored
      
      The SMTP connection here uses a OpenSSL socket in client mode,
      suggesting invalid/ignored flags is rather misleading.
      5e3fb2f7
  28. 31 5月, 2016 1 次提交