Module: Roda::RodaPlugins::Base::ResponseClassMethods
- Defined in:
- lib/roda.rb
Overview
Class methods for RodaResponse
Instance Attribute Summary collapse
-
#roda_class ⇒ Object
Reference to the Roda class related to this response class.
Instance Method Summary collapse
-
#inspect ⇒ Object
Since RodaResponse is anonymously subclassed when Roda is subclassed, and then assigned to a constant of the Roda subclass, make inspect reflect the likely name for the class.
Instance Attribute Details
#roda_class ⇒ Object
Reference to the Roda class related to this response class.
854 855 856 |
# File 'lib/roda.rb', line 854 def roda_class @roda_class end |
Instance Method Details
#inspect ⇒ Object
Since RodaResponse is anonymously subclassed when Roda is subclassed, and then assigned to a constant of the Roda subclass, make inspect reflect the likely name for the class.
859 860 861 |
# File 'lib/roda.rb', line 859 def inspect "#{roda_class.inspect}::RodaResponse" end |