mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -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:
parent
2e65e8ccc6
commit
100b994d90
1 changed files with 2 additions and 1 deletions
|
@ -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 = {})
|
||||
|
|
Loading…
Reference in a new issue