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.
810 811 812 |
# File 'lib/roda.rb', line 810 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.
815 816 817 |
# File 'lib/roda.rb', line 815 def inspect "#{roda_class.inspect}::RodaResponse" end |