1. 11 5月, 2014 2 次提交
  2. 14 3月, 2014 1 次提交
  3. 27 1月, 2014 1 次提交
    • A
      Maintain current timezone when changing time during DST overlap · b5944928
      Andrew White 提交于
      Currently if a time is changed during DST overlap in the autumn then the
      method `period_for_local` will return the DST period. However if the
      original time is not DST then this can be surprising and is not what is
      generally wanted. This commit changes that behavior to maintain the current
      period if it's in the list of periods returned by `periods_for_local`.
      
      It is possible to alter the behavior of `period_for_local` by specifying a
      second argument but since we may be change from another time that could be
      either DST or not then this would give inconsistent results.
      
      Fixes #12163.
      b5944928
  4. 10 1月, 2014 1 次提交
  5. 02 1月, 2014 1 次提交
    • A
      Don't lazy load the tzinfo library · 75ad0e64
      Andrew White 提交于
      Lazy loading the tzinfo library doesn't really buy us anything because
      the gem is installed as a dependency via the gemspec and if a developer
      is using Active Support outside of Rails then they can cherry pick which
      files to load anyway.
      
      Fixes #13553
      75ad0e64
  6. 03 12月, 2013 2 次提交
  7. 07 8月, 2013 3 次提交
  8. 12 4月, 2013 1 次提交
  9. 27 3月, 2013 1 次提交
  10. 12 3月, 2013 1 次提交
  11. 10 3月, 2013 1 次提交
  12. 11 12月, 2012 1 次提交
    • A
      Deprecate obsolete Time to DateTime fallback methods · 48583f8b
      Andrew White 提交于
      The Time.time_with_datetime_fallback, Time.utc_time and Time.local_time
      methods were added to handle the limitations of Ruby's native Time
      implementation. Those limitations no longer apply so we are deprecating
      them in 4.0 and they will be removed in 4.1.
      48583f8b
  13. 05 12月, 2012 1 次提交
    • C
      Replace comments' non-breaking spaces with spaces · 019df988
      claudiob 提交于
      Sometimes, on Mac OS X, programmers accidentally press Option+Space
      rather than just Space and don’t see the difference. The problem is
      that Option+Space writes a non-breaking space (0XA0) rather than a
      normal space (0x20).
      
      This commit removes all the non-breaking spaces inadvertently
      introduced in the comments of the code.
      019df988
  14. 02 12月, 2012 1 次提交
    • A
      Only take the date parts from Time.zone.now · c89b6c4c
      Andrew White 提交于
      When there are missing components in the Hash returned by
      Date._parse only the date components should default to the
      value of Time.zone.now, the time components should all
      default to zero.
      c89b6c4c
  15. 01 12月, 2012 1 次提交
    • 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
  16. 02 11月, 2012 1 次提交
  17. 15 9月, 2012 1 次提交
  18. 01 7月, 2012 1 次提交
  19. 14 5月, 2012 1 次提交
  20. 01 5月, 2012 2 次提交
  21. 14 4月, 2012 1 次提交
    • D
      Correcting some confusion. Pago Pago is part of American Samoa, not Samoa.... · 1d08ce5f
      Dave Gerton 提交于
      Correcting some confusion. Pago Pago is part of American Samoa, not Samoa. Further, Samoa and Tokelau jumped across the IDL from Dec 29 to Dec 31, 2011 switching from UTC-11 to UTC+13. American Samoa did not make the change and remains at UTC-11. Pacific/Fakaofo and Pacific/Apia are in TZInfo and documentation about the dateline change is in austalasia at IANA.
      1d08ce5f
  22. 25 3月, 2012 1 次提交
  23. 17 3月, 2012 3 次提交
  24. 07 3月, 2012 1 次提交
  25. 07 9月, 2011 1 次提交
    • T
      Make sure require_tzinfo only calls Kernel#require if TZInfo isn't already present. · 2147f35d
      Tim Lucas 提交于
      This wasn't a problem when require_tzinfo was only called from TimeZone#initialize, but now it's being called for every lookup to TimeZone.[] (via lazy_zones_map)
      
      TimeZone lookup can occur when unmarshalling TimeWithZone objects, which is where I first saw the big slowdown (500ms for each Rails action that loaded from Rails.cache)
      2147f35d
  26. 16 8月, 2011 2 次提交
  27. 23 5月, 2011 1 次提交
  28. 13 7月, 2010 1 次提交
  29. 03 7月, 2010 1 次提交
  30. 29 6月, 2010 1 次提交
  31. 22 6月, 2010 1 次提交
  32. 11 6月, 2010 1 次提交