1. 04 12月, 2012 10 次提交
  2. 03 12月, 2012 4 次提交
  3. 02 12月, 2012 21 次提交
  4. 01 12月, 2012 5 次提交
    • C
      Fix typo in AS guide [ci skip] · fb425202
      Carlos Antonio da Silva 提交于
      fb425202
    • X
      copy-edits the docs of 9ee0ffb3 · 0dc14171
      Xavier Noria 提交于
      0dc14171
    • X
      Merge pull request #8246 from urielka/uriel-fixed-8167 · 60edeced
      Xavier Noria 提交于
      Fix #8167 - adding autoloading support for caching
      60edeced
    • U
      Patched Marshal#load to work with constant autoloading... · 9ee0ffb3
      Uriel Katz 提交于
      Patched Marshal#load to work with constant autoloading (active_support/dependecies.rb) (issue #8167)
      9ee0ffb3
    • A
      Make `Time.zone.parse` to work with JavaScript date strings · 005d9106
      Andrew White 提交于
      Chrome, Safari and Firefox serialize Date objects to strings such
      as 'Mon May 28 2012 00:00:00 GMT-0700 (PDT)'. When these strings
      are parsed the zone is interpreted as 'GMT-0700' which doesn't
      exist in the TzInfo list of timezones.
      
      By taking advantage of the improved date/time handling in 1.9.3
      we can use `Date._parse` and the `:offset` value which is parsed
      correctly.
      
      Three tests were amended to make them pass:
      
      1.  test_parse_with_old_date
      
          This needed changing to a different value because the original
          value was before EST was adopted so was being changed to a
          LMT (Local Mean Time) value after the change. It didn't before
          because `DateTime` just has offsets from UTC not timezones.
      
      2.  test_parse_should_not_black_out_system_timezone_dst_jump
      
          Changed the implementation of this test as the stubs were
          dependent on internal implementation details of the test.
          Confirmed that the modified test still failed when the
          implementation of `parse` was restored to pre-#5571.
      
      3.  test_parse_should_black_out_app_timezone_dst_jump
      
          Ditto.
      
      Closes #5770.
      005d9106