Method: MIME::Types#count

Defined in:
lib/mime/types.rb

#countObject

Returns the number of known type variants.



78
79
80
# File 'lib/mime/types.rb', line 78

def count
  @type_variants.values.inject(0) { |a, e| a + e.size }
end