Class: Hash

Inherits:
Object
  • Object
show all
Defined in:
lib/roart/core/hash.rb

Instance Method Summary collapse

Instance Method Details

#to_content_formatObject


2
3
4
5
6
7
8
9
10
11
12
13
# File 'lib/roart/core/hash.rb', line 2

def to_content_format
  fields = self.map do |key,value| 
    unless value.nil?
      if key.to_s.match(/^cf_.+/)
        "CF-#{key.to_s[3..key.to_s.length].camelize.humanize}: #{value}"
      else
        "#{key.to_s.camelize}: #{value}"
      end
    end
  end
  content = fields.compact.join("\n")
end