Class: Mime::Mimes
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Instance Chain:
|
|
Inherits: | Object |
Defined in: | actionpack/lib/action_dispatch/http/mime_type.rb |
Class Method Summary
- .new ⇒ Mimes constructor
Instance Attribute Summary
- #symbols readonly
::Enumerable
- Included
#many? | Returns |
Instance Method Summary
::Enumerable
- Included
#compact_blank | Returns a new |
#exclude? | The negative of the |
#excluding | Returns a copy of the enumerable excluding the specified elements. |
#in_order_of | Returns a new |
#including | Returns a new array that includes the passed elements. |
#index_by | Convert an enumerable to a hash, using the block result as the key and the element as the value. |
#index_with | Convert an enumerable to a hash, using the element as the key and the block result as the value. |
#maximum | Calculates the maximum from the extracted elements. |
#minimum | Calculates the minimum from the extracted elements. |
#pick | Extract the given key from the first element in the enumerable. |
#pluck | Extract the given key from each element in the enumerable. |
#sole | Returns the sole item in the enumerable. |
#without | Alias for Enumerable#excluding. |
Constructor Details
.new ⇒ Mimes
# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 11
def initialize @mimes = [] @symbols = [] @symbols_set = Set.new end
Instance Attribute Details
#symbols (readonly)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 7
attr_reader :symbols
Instance Method Details
#<<(type)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 21
def <<(type) @mimes << type sym_type = type.to_sym @symbols << sym_type @symbols_set << sym_type end
#delete_if
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 28
def delete_if @mimes.delete_if do |x| if yield x sym_type = x.to_sym @symbols.delete(sym_type) @symbols_set.delete(sym_type) true end end end
#each(&block)
[ GitHub ]# File 'actionpack/lib/action_dispatch/http/mime_type.rb', line 17
def each(&block) @mimes.each(&block) end
#valid_symbols?(symbols) ⇒ Boolean
:nodoc