updated(date_or_time = nil)
public
Accepts a Date or Time
object and inserts it in the proper format. If nil is passed, current time
in UTC is used.
Show source
def updated(date_or_time = nil)
@xml.updated((date_or_time || Time.now.utc).xmlschema)
end