1. 21 8月, 2020 1 次提交
  2. 14 6月, 2020 1 次提交
  3. 10 6月, 2020 1 次提交
  4. 06 3月, 2020 1 次提交
  5. 26 1月, 2020 1 次提交
  6. 28 12月, 2019 1 次提交
  7. 23 12月, 2019 1 次提交
  8. 19 10月, 2019 1 次提交
  9. 10 9月, 2019 1 次提交
  10. 08 8月, 2019 1 次提交
  11. 11 4月, 2019 1 次提交
  12. 21 3月, 2019 1 次提交
  13. 05 11月, 2018 1 次提交
    • N
      Fix typo · 0f19d7b3
      Nick Coyne 提交于
      Just a small typo fix for the recently merged #34257
      0f19d7b3
  14. 19 10月, 2018 1 次提交
  15. 22 8月, 2018 2 次提交
  16. 24 7月, 2018 1 次提交
  17. 11 5月, 2018 1 次提交
    • A
      Added a lot of Oxford commas · 25867024
      Anthony Crumley 提交于
      [ci skip] A regular expression was used to find a lot of missing Oxford
      commas and add them.  The regular expression was as follows.
      
      ", ([a-zA-Z0-9.\`:'\"]+ ){1,6}(or|and) "
      25867024
  18. 22 8月, 2017 1 次提交
  19. 20 8月, 2017 1 次提交
  20. 14 8月, 2017 1 次提交
  21. 25 3月, 2017 1 次提交
  22. 15 3月, 2017 1 次提交
  23. 12 1月, 2017 1 次提交
  24. 10 1月, 2017 1 次提交
    • A
      Fix inconsistent results when parsing large durations and constructing durations from code · cb9d0e48
      Andrey Novikov 提交于
          ActiveSupport::Duration.parse('P3Y') == 3.years # It should be true
      
      Duration parsing made independent from any moment of time:
      Fixed length in seconds is assigned to each duration part during parsing.
      
      Changed duration of months and years in seconds to more accurate and logical:
      
       1. The value of 365.2425 days in Gregorian year is more accurate
          as it accounts for every 400th non-leap year.
      
       2. Month's length is bound to year's duration, which makes
          sensible comparisons like `12.months == 1.year` to be `true`
          and nonsensical ones like `30.days == 1.month` to be `false`.
      
      Calculations on times and dates with durations shouldn't be affected as
      duration's numeric value isn't used in calculations, only parts are used.
      
      Methods on `Numeric` like `2.days` now use these predefined durations
      to avoid duplicating of duration constants through the codebase and
      eliminate creation of intermediate durations.
      cb9d0e48
  25. 08 8月, 2016 1 次提交
  26. 01 8月, 2016 1 次提交
  27. 28 4月, 2016 2 次提交
  28. 05 3月, 2016 1 次提交
  29. 27 2月, 2016 1 次提交
  30. 26 2月, 2016 1 次提交
  31. 20 1月, 2016 1 次提交
  32. 17 12月, 2015 1 次提交
  33. 24 11月, 2015 1 次提交
  34. 25 8月, 2015 1 次提交
  35. 24 8月, 2015 1 次提交
  36. 22 8月, 2015 1 次提交
    • J
      [skip ci] Debugging Rails Guide fixes · 94a0c1c5
      Jon Atack 提交于
      - Fixes:
      
      "we want go deep" -> "we won't go deep"
      
      "to next next line" -> "to the next line"
      
      - Minor improvements in clarity and grammar.
      
      Cheers :)
      94a0c1c5
  37. 18 8月, 2015 1 次提交
  38. 08 8月, 2015 1 次提交
    • A
      stop using @_env in the controller instance · 81cfdf24
      Aaron Patterson 提交于
      Actions are processed through `dispatch`, so they should have the
      request set on them before any user land code can be executed.  Lets
      stop setting _env on the controller, and give access to it through the
      `env` method.
      81cfdf24