Changeset 8816
- Timestamp:
- 02/07/08 21:09:23 (7 months ago)
- Files:
-
- trunk/activesupport/CHANGELOG (modified) (2 diffs)
- trunk/activesupport/lib/active_support/core_ext/base64 (added)
- trunk/activesupport/lib/active_support/core_ext/base64.rb (added)
- trunk/activesupport/lib/active_support/core_ext/base64/encoding.rb (added)
- trunk/activesupport/test/core_ext/base64_ext_test.rb (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/CHANGELOG
r8810 r8816 1 1 *SVN* 2 2 3 * Added Base64.encode64s to encode values in base64 without the newlines. This makes the values immediately usable as URL parameters or memcache keys without further processing [DHH] 4 3 5 * Remove :nodoc: entries around the ActiveSupport test/unit assertions. #10946 [dancroak, jamesh] 4 6 … … 41 43 * Introduce ActiveSupport::TimeWithZone, for wrapping Time instances with a TimeZone. Introduce instance methods to Time for creating TimeWithZone instances, and class methods for managing a global time zone. [Geoff Buesing] 42 44 45 >>>>>>> .r8815 43 46 * Replace non-dst-aware TimeZone class with dst-aware class from tzinfo_timezone plugin. TimeZone#adjust and #unadjust are no longer available; tzinfo gem must now be present in order to perform time zone calculations, via #local_to_utc and #utc_to_local methods. [Geoff Buesing] 44 47