1. 07 8月, 2016 2 次提交
  2. 26 7月, 2016 2 次提交
  3. 25 7月, 2016 1 次提交
  4. 20 7月, 2016 1 次提交
  5. 17 7月, 2016 1 次提交
  6. 29 6月, 2016 1 次提交
  7. 28 6月, 2016 2 次提交
  8. 22 6月, 2016 3 次提交
  9. 16 6月, 2016 5 次提交
  10. 08 6月, 2016 1 次提交
    • S
      Delete bad test · e6bb1a1b
      Sean Griffin 提交于
      This test was broken by f650e032. It was
      added by https://github.com/rails/rails/pull/17978, and is adequately
      tested elsewhere. The reason that this breaks is that
      `Controller#process` is not going to set a new response object, and we
      now terminate in callbacks if the response has been sent. The only
      reason that this test was calling `get` in the first place was because
      the controller under test blows up if `request` was `nil`. The point
      being that the failure is invalid, and I don't think we need to fix the
      test in this location.
      e6bb1a1b
  11. 05 6月, 2016 1 次提交
  12. 02 6月, 2016 1 次提交
  13. 21 5月, 2016 2 次提交
  14. 19 5月, 2016 1 次提交
  15. 18 5月, 2016 2 次提交
  16. 10 5月, 2016 2 次提交
  17. 20 4月, 2016 1 次提交
    • J
      Ensure Cache#inspect doesn't block concurrent cache writes · 9918118a
      Jeremy Daer 提交于
      Object#inspect recursively inspects instance variables, exposing all
      internal state, including sensitive internal cache objects. Override
      Cache#inspect to give a high-level summary that never interferes with
      concurrent cache writes.
      9918118a
  18. 17 4月, 2016 1 次提交
  19. 05 4月, 2016 1 次提交
    • N
      date_select helper with_css_classes option also accept a hash · d7b60544
      neumayr 提交于
      `date_select` helper `:with_css_classes` option now accepts a hash of strings
      for `:year`, `:month`, `:day`, `:hour`, `:minute`, `:second` that will extend
      the select type with the given css class value.
      
      ```erb
      <%= f.date_select :birthday, with_css_classes: { month: "my-month", year: "my-year" } %>
      ```
      
      ```html
      <select id="user_birthday_3i" name="user[birthday(3i)]">…</select>
      <select id="user_birthday_2i" name="user[birthday(2i)]" class="my-month">…</select>
      <select id="user_birthday_1i" name="user[birthday(1i)]" class="my-year">…</select>
      ```
      
      Optional, add global `html_options` to modify every select tag in the set.
      
      ```erb
      <%= f.date_select :birthday, with_css_classes: { month: "my-month", year: "my-year" }, { class: "my-date optional" } %>
      ```
      
      Supported DateHelper methods: `select_day`, `select_month`, `select_year`,
      `select_hour`, `select_minute`, `select_second`, `select_datetime`, `select_time`,
      `time_select`, `date_select` and `datetime_select`.
      
      `:with_css_classes` option was added to the `date_select` with #7975.
      d7b60544
  20. 01 4月, 2016 1 次提交
  21. 16 3月, 2016 1 次提交
  22. 13 3月, 2016 1 次提交
  23. 07 3月, 2016 1 次提交
  24. 06 3月, 2016 1 次提交
  25. 04 3月, 2016 1 次提交
    • B
      Fix partial rendering with dot in filename · 39c44480
      Benjamin Quorning 提交于
      When rendering a collection with a partial whose filename contains a dot, e.g.
      "customer.mobile", we would set a `locals[:'customer.mobile']` variable instead
      of, as in earlier versions of Rails, `locals[:customer]`.
      
      This bug was introduced in da9038ea.
      39c44480
  26. 01 3月, 2016 1 次提交
  27. 28 2月, 2016 1 次提交
  28. 27 2月, 2016 1 次提交