Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/amee.rb

Instance Method Summary collapse

Instance Method Details

#is_json?Boolean

Returns:

  • (Boolean)


18
19
20
# File 'lib/amee.rb', line 18

def is_json?
  slice(0,1) == '{'
end

#is_v2_atom?Boolean

Returns:

  • (Boolean)


30
31
32
# File 'lib/amee.rb', line 30

def is_v2_atom?
  is_xml? && (include?('<feed ') || include?('<entry ')) && include?('xmlns:amee="http://schemas.amee.cc/2.0"')
end

#is_v2_json?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/amee.rb', line 21

def is_v2_json?
  is_json? && match('"apiVersion"\s?:\s?"2.0"')
end

#is_v2_xml?Boolean

Returns:

  • (Boolean)


27
28
29
# File 'lib/amee.rb', line 27

def is_v2_xml?
  is_xml? && include?('<Resources xmlns="http://schemas.amee.cc/2.0">')
end

#is_xml?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/amee.rb', line 24

def is_xml?
  slice(0,5) == '<?xml'
end