Parent

Files

HttpRouter::Route

@private

Attributes

cache[RW]
cache_expires_in[RW]
cache_key[RW]
controller[RW]
use_layout[RW]

Public Instance Methods

after_filters(&block) click to toggle source
# File lib/padrino-core/application/routing.rb, line 74
def after_filters(&block)
  @_after_filters ||= []
  @_after_filters << block if block_given?

  @_after_filters
end
before_filters(&block) click to toggle source
# File lib/padrino-core/application/routing.rb, line 67
def before_filters(&block)
  @_before_filters ||= []
  @_before_filters << block if block_given?

  @_before_filters
end
custom_conditions(&block) click to toggle source
# File lib/padrino-core/application/routing.rb, line 81
def custom_conditions(&block)
  @_custom_conditions ||= []
  @_custom_conditions << block if block_given?

  @_custom_conditions
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.