1. 03 1月, 2015 2 次提交
    • C
      Throw :abort halts default CallbackChains · 2386daab
      claudiob 提交于
      This commit changes arguments and default value of CallbackChain's :terminator
      option.
      
      After this commit, Chains of callbacks defined **without** an explicit
      `:terminator` option will be halted as soon as a `before_` callback throws
      `:abort`.
      
      Chains of callbacks defined **with** a `:terminator` option will maintain their
      existing behavior of halting as soon as a `before_` callback matches the
      terminator's expectation. For instance, ActiveModel's callbacks will still
      halt the chain when a `before_` callback returns `false`.
      2386daab
    • R
      Deprecate `MissingSourceFile` in favor of `LoadError`. · 734d97d2
      Rafael Mendonça França 提交于
      `MissingSourceFile` was just an alias to `LoadError` and was not
      being raised inside the framework.
      734d97d2
  2. 01 1月, 2015 1 次提交
  3. 23 12月, 2014 1 次提交
  4. 10 12月, 2014 1 次提交
  5. 05 12月, 2014 1 次提交
  6. 02 12月, 2014 1 次提交
    • L
      Add `#verified` and `#valid_message?` to MessageVerifier · 7ad541f9
      Logan Leger 提交于
      This commit adds a `#verified` method to
      `ActiveSupport::MessageVerifier` which will return either `false` when
      it encounters an error or the message. `#verify` continues to raise an
      `InvalidSignature` exception on error.
      
      This commit also adds a convenience boolean method on `MessageVerifier`
      as a way to check if a message is valid without performing the
      decoding.
      7ad541f9
  7. 29 11月, 2014 1 次提交
  8. 11 11月, 2014 1 次提交
  9. 06 11月, 2014 1 次提交
  10. 28 10月, 2014 1 次提交
  11. 26 10月, 2014 1 次提交
  12. 23 10月, 2014 1 次提交
  13. 16 10月, 2014 1 次提交
  14. 30 9月, 2014 1 次提交
  15. 19 9月, 2014 1 次提交
  16. 18 9月, 2014 2 次提交
  17. 14 9月, 2014 1 次提交
  18. 12 9月, 2014 1 次提交
  19. 08 9月, 2014 1 次提交
    • G
      Default to sorting user's test cases for now · 2b41343c
      Godfrey Chan 提交于
      Goals:
      
      1. Default to :random for newly generated applications
      2. Default to :sorted for existing applications with a warning
      3. Only show the warning once
      4. Only show the warning if the app actually uses AS::TestCase
      
      Fixes #16769
      2b41343c
  20. 06 9月, 2014 1 次提交
  21. 05 9月, 2014 1 次提交
  22. 04 9月, 2014 1 次提交
  23. 02 9月, 2014 1 次提交
  24. 30 8月, 2014 4 次提交
  25. 25 8月, 2014 1 次提交
    • R
      Follow-up to #16560 · d5578cd1
      Robin Dupret 提交于
      For the sake of backward-compatibility, we need to make #instance_of?
      return true for Fixnum. On the other hand, the method should still
      give true for ActiveSupport::Duration itself which was not the case
      before.
      d5578cd1
  26. 18 8月, 2014 2 次提交
    • R
      Define the Duration#instance_of? method · eb73d7da
      Robin Dupret 提交于
      Since Duration is extending from ProxyObject which extends itself from
      BasicObject, the Duration object doesn't respond to the #instance_of?
      method. Thus, the #method_missing hook get triggered, delegating the
      method to its `value` attribute.
      
      However, Rubinius' #eql? definition relies on #instance_of?, thus this
      will equal to true with a Fixnum (since its `value` attribute is a
      Fixnum) while it should not.
      
      The previous behavior was wrong anyway, no matter the implementation.
      eb73d7da
    • D
      Fix rounding errors with #travel_to by resetting the usec on any passed time... · 9f6e82ee
      David Heinemeier Hansson 提交于
      Fix rounding errors with #travel_to by resetting the usec on any passed time to zero, so we only travel with per-second precision, not anything deeper than that.
      9f6e82ee
  27. 12 8月, 2014 2 次提交
  28. 07 8月, 2014 1 次提交
  29. 05 8月, 2014 1 次提交
  30. 02 8月, 2014 2 次提交
  31. 30 7月, 2014 1 次提交
  32. 29 7月, 2014 1 次提交
    • G
      Fixed a compatibility issue with the `Oj` gem · bf7fbe64
      Godfrey Chan 提交于
      `Time#as_json`, `Date#as_json` and `DateTime#as_json` incorrectly depends on a
      delegation that is set up in `active_support/json/encoding`. We cannot simply
      require that file in `core_ext/object/json` because it would cause a circular
      dependency problem (see #12203 for background). We should instead rely on AS's
      autoload to load that file for us on-demand.
      
      To trigger autoload correctly, we need to reference the `AS::JSON::Encoding`
      constant instead of using the delegated version.
      
      Fixes #16131.
      bf7fbe64