Class: Mime::AllType
- Includes:
- Singleton
- Defined in:
- lib/action_dispatch/http/mime_type.rb
Constant Summary
Constants inherited from Type
Type::PARAMETER_SEPARATOR_REGEXP, Type::TRAILING_STAR_REGEXP
Instance Attribute Summary
Attributes inherited from Type
Instance Method Summary collapse
- #all? ⇒ Boolean
- #html? ⇒ Boolean
-
#initialize ⇒ AllType
constructor
A new instance of AllType.
Methods inherited from Type
#==, #===, #=~, #eql?, lookup, lookup_by_extension, parse, parse_data_with_trailing_star, parse_trailing_star, #ref, register, register_alias, register_callback, #to_s, #to_str, #to_sym, unregister
Constructor Details
#initialize ⇒ AllType
Returns a new instance of AllType.
307 308 309 |
# File 'lib/action_dispatch/http/mime_type.rb', line 307 def initialize super "*/*", :all end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Mime::Type
Instance Method Details
#all? ⇒ Boolean
311 |
# File 'lib/action_dispatch/http/mime_type.rb', line 311 def all?; true; end |
#html? ⇒ Boolean
312 |
# File 'lib/action_dispatch/http/mime_type.rb', line 312 def html?; true; end |