Skip to Content Skip to Search
Methods
#
D
E
N
V
Included Modules

Attributes

[R] symbols

Class Public methods

new()

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 11
def initialize
  @mimes = []
  @symbols = []
  @symbols_set = Set.new
end

Instance Public methods

<<(type)

# 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()

# 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)

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 17
def each(&block)
  @mimes.each(&block)
end

valid_symbols?(symbols)

# File actionpack/lib/action_dispatch/http/mime_type.rb, line 39
def valid_symbols?(symbols) # :nodoc
  symbols.all? { |s| @symbols_set.include?(s) }
end