Methods

Files

Class/Module Index [+]

Quicksearch

Fog::JSON

Public Class Methods

sanitize(data) click to toggle source
# File lib/fog/core/json.rb, line 4
def self.sanitize(data)
  case data
  when Array
    data.map {|datum| sanitize(datum)}
  when Hash
    for key, value in data
      data[key] = sanitize(value)
    end
  when ::Time
    data.strftime("%Y-%m-%dT%H:%M:%SZ")
  else
    data
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.