mirror of
https://github.com/github/rails.git
synced 2026-01-30 08:48:06 -05:00
Added binary formatting
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4432 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -16,7 +16,8 @@ module ActiveSupport #:nodoc:
|
||||
|
||||
XML_FORMATTING = {
|
||||
"date" => Proc.new { |date| date.to_s(:db) },
|
||||
"datetime" => Proc.new { |time| time.xmlschema }
|
||||
"datetime" => Proc.new { |time| time.xmlschema },
|
||||
"binary" => Proc.new { |binary| Base64.encode64(binary) }
|
||||
}
|
||||
|
||||
def to_xml(options = {})
|
||||
|
||||
Reference in New Issue
Block a user