Class: Mime::Mimes
- Inherits:
-
Object
- Object
- Mime::Mimes
- Includes:
- Enumerable
- Defined in:
- lib/action_dispatch/http/mime_type.rb
Instance Attribute Summary collapse
-
#symbols ⇒ Object
readonly
Returns the value of attribute symbols.
Instance Method Summary collapse
- #<<(type) ⇒ Object
- #delete_if ⇒ Object
- #each ⇒ Object
-
#initialize ⇒ Mimes
constructor
A new instance of Mimes.
Constructor Details
#initialize ⇒ Mimes
Returns a new instance of Mimes.
12 13 14 15 |
# File 'lib/action_dispatch/http/mime_type.rb', line 12 def initialize @mimes = [] @symbols = [] end |
Instance Attribute Details
#symbols ⇒ Object (readonly)
Returns the value of attribute symbols.
8 9 10 |
# File 'lib/action_dispatch/http/mime_type.rb', line 8 def symbols @symbols end |
Instance Method Details
#<<(type) ⇒ Object
21 22 23 24 |
# File 'lib/action_dispatch/http/mime_type.rb', line 21 def <<(type) @mimes << type @symbols << type.to_sym end |
#delete_if ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'lib/action_dispatch/http/mime_type.rb', line 26 def delete_if @mimes.delete_if do |x| if yield x @symbols.delete(x.to_sym) true end end end |
#each ⇒ Object
17 18 19 |
# File 'lib/action_dispatch/http/mime_type.rb', line 17 def each @mimes.each { |x| yield x } end |