Module: Grape::DSL::Helpers::BaseHelper
- Included in:
- API::Helpers
- Defined in:
- lib/grape/dsl/helpers.rb
Overview
This module extends user defined helpers to provide some API-specific functionality.
Instance Attribute Summary collapse
-
#api ⇒ Object
Returns the value of attribute api.
Instance Method Summary collapse
Instance Attribute Details
#api ⇒ Object
Returns the value of attribute api.
86 87 88 |
# File 'lib/grape/dsl/helpers.rb', line 86 def api @api end |
Instance Method Details
#api_changed(new_api) ⇒ Object
93 94 95 96 |
# File 'lib/grape/dsl/helpers.rb', line 93 def api_changed(new_api) @api = new_api process_named_params end |
#params(name, &block) ⇒ Object
88 89 90 91 |
# File 'lib/grape/dsl/helpers.rb', line 88 def params(name, &block) @named_params ||= {} @named_params[name] = block end |