1. 30 9月, 2015 2 次提交
    • J
      56625b28
    • J
      Eliminate overlapping `app/assets` load path · 20ec1e92
      Jeremy Daer 提交于
      * Move `app/assets/manifest.js` to `app/assets/config/manifest.js`.
        Avoid the suggestion that you can/should deep-link `stylesheets/foo`.
      * Pull in all toplevel stylesheets and JavaScripts, not just
        `application.js` and `.css`. Demonstrate how to use `link_directory`
        with a specified `.js`/`.css` type.
      * Fix RAILS_ENV handling in assets tests.
      * Shush warnings spam from third-party libs that distract from tests.
      20ec1e92
  2. 21 9月, 2015 2 次提交
  3. 19 9月, 2015 1 次提交
  4. 15 9月, 2015 1 次提交
  5. 12 9月, 2015 1 次提交
  6. 09 9月, 2015 1 次提交
  7. 08 9月, 2015 1 次提交
  8. 05 9月, 2015 3 次提交
  9. 03 9月, 2015 1 次提交
  10. 02 9月, 2015 2 次提交
  11. 01 9月, 2015 1 次提交
  12. 28 8月, 2015 3 次提交
  13. 26 8月, 2015 1 次提交
  14. 23 8月, 2015 1 次提交
  15. 22 8月, 2015 1 次提交
  16. 21 8月, 2015 1 次提交
  17. 20 8月, 2015 1 次提交
  18. 13 8月, 2015 1 次提交
  19. 10 8月, 2015 1 次提交
  20. 30 7月, 2015 1 次提交
  21. 15 7月, 2015 1 次提交
  22. 14 7月, 2015 1 次提交
    • J
      Replaced `ActiveSupport::Concurrency::Latch` with concurrent-ruby. · 284a9ba8
      Jerry D'Antonio 提交于
      The concurrent-ruby gem is a toolset containing many concurrency
      utilities. Many of these utilities include runtime-specific
      optimizations when possible. Rather than clutter the Rails codebase with
      concurrency utilities separate from the core task, such tools can be
      superseded by similar tools in the more specialized gem. This commit
      replaces `ActiveSupport::Concurrency::Latch` with
      `Concurrent::CountDownLatch`, which is functionally equivalent.
      284a9ba8
  23. 05 7月, 2015 1 次提交
  24. 17 6月, 2015 1 次提交
  25. 13 6月, 2015 1 次提交
  26. 31 5月, 2015 1 次提交
    • S
      Ensure symbols passed to `select` are always quoted · 0ef7e73f
      Sean Griffin 提交于
      Our general contract in Active Record is that strings are assumed to be
      SQL literals, and symbols are assumed to reference a column. If a from
      clause is given, we shouldn't include the table name, but we should
      still quote the value as if it were a column.
      
      Upon fixing this, the tests were still failing on SQLite. This was
      because the column name being returned by the query was `"\"join\""`
      instead of `"join"`. This is actually a bug in SQLite that was fixed a
      long time ago, but I was using the version of SQLite included by OS X
      which has this bug. Since I'm guessing this will be a common case for
      contributors, I also added an explicit check with a more helpful error
      message.
      
      Fixes #20360
      0ef7e73f
  27. 29 5月, 2015 1 次提交
  28. 28 4月, 2015 1 次提交
  29. 26 4月, 2015 1 次提交
  30. 24 4月, 2015 1 次提交
    • G
      Uncomment byebug in framework Gemfile · 78b51a80
      Godfrey Chan 提交于
      History:
      
      1. `debugger` was there until d2ed433b where it was commented out, and I
         couldn't figure out why
      
      2. Since then we inherited that when switching to `byebug` in 93559da4
      
      Reasons:
      
      1. It's nice to have a debugger when working on framework bugs
      
      2. It's an uncommented dependency in app Gemfiles since Rails 4.2 (see fbe38c9e)
      78b51a80
  31. 10 4月, 2015 1 次提交
  32. 09 4月, 2015 1 次提交
  33. 02 4月, 2015 1 次提交