Class: String

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

Instance Method Summary collapse

Instance Method Details

#is_json?Boolean

Returns:

  • (Boolean)


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

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

#is_v2_atom?Boolean

Returns:

  • (Boolean)


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

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)


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

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

#is_v2_xml?Boolean

Returns:

  • (Boolean)


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

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

#is_xml?Boolean

Returns:

  • (Boolean)


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

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