class Rspec::Generators::ScaffoldGenerator

def formatted_hash(hash)

def formatted_hash(hash)
  formatted = hash.inspect
  formatted.gsub!("{", "{ ")
  formatted.gsub!("}", " }")
  formatted.gsub!("=>", " => ")
  formatted
end