1. 13 5月, 2015 1 次提交
    • C
      [ci skip] Don’t encourage `sudo gem install` · 0080a886
      claudiob 提交于
      I think we are better off leaving `sudo` outside of the documented
      way of installing gems (`activerecord`, `actionpack`, …).
      
      We don’t want newbies to think that `sudo` is required or, even worse, than
      they actually have to type `[sudo] gem install`.
      
      In most scenarios, `sudo` is not needed to install gems, and people who do
      need it, probably already know about it.
      
      What do you think? 😁
      0080a886
  2. 11 5月, 2015 2 次提交
  3. 10 5月, 2015 1 次提交
  4. 09 5月, 2015 1 次提交
  5. 08 5月, 2015 2 次提交
    • Y
      remove duplicate test. · f1da919a
      Yves Senn 提交于
      The old `test_create_bang_returns_falsy_when_join_record_has_errors` had
      a missleading name and was a duplicate of
      `test_save_should_not_raise_exception_when_join_record_has_errors`.
      
      Since it had an assertion on the return value I renamed it accordingly
      and got rid of the duplicate test.
      f1da919a
    • T
      :nodoc: rename_column in postgresql/schema_statements.rb · afd215da
      Tony Miller 提交于
      Its already doc'ed in
      activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
      afd215da
  6. 07 5月, 2015 1 次提交
    • Y
      tests, extract helpers to modify global state. · d27974d3
      Yves Senn 提交于
      Make sure that tests do not hardcode the default value.
      For example `test_instantiation_doesnt_try_to_require_corresponding_file`
      always restored the configuration to `true` regardless of what it's
      original value was.
      
      Extract a helper to make the global modification consistent across tests.
      d27974d3
  7. 06 5月, 2015 2 次提交
  8. 05 5月, 2015 2 次提交
  9. 04 5月, 2015 5 次提交
  10. 03 5月, 2015 9 次提交
  11. 02 5月, 2015 1 次提交
  12. 01 5月, 2015 2 次提交
  13. 30 4月, 2015 2 次提交
  14. 29 4月, 2015 2 次提交
    • E
      Apply schema cache dump when creating connections · 33fe7cc8
      Eugene Kenny 提交于
      The `db:schema:cache:dump` rake task dumps the database schema structure
      to `db/schema_cache.dump`. If this file is present, the schema details
      are loaded into the currently checked out connection by a railtie while
      Rails is booting, to avoid having to query the database for its schema.
      
      The schema cache dump is only applied to the initial connection used to
      boot the application though; other connections from the same pool are
      created with an empty schema cache, and still have to load the structure
      of each table directly from the database.
      
      With this change, a copy of the schema cache is associated with the
      connection pool and applied to connections as they are created.
      33fe7cc8
    • N
  15. 28 4月, 2015 1 次提交
  16. 27 4月, 2015 5 次提交
  17. 24 4月, 2015 1 次提交