Module: Grape::API::Helpers

Defined in:
lib/grape/api.rb

Overview

This module extends user defined helpers to provide some API-specific functionality

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#apiObject

Returns the value of attribute api.



618
619
620
# File 'lib/grape/api.rb', line 618

def api
  @api
end

Instance Method Details

#api_changed(new_api) ⇒ Object



624
625
626
627
# File 'lib/grape/api.rb', line 624

def api_changed(new_api)
  @api = new_api
  process_named_params
end

#params(name, &block) ⇒ Object



619
620
621
622
# File 'lib/grape/api.rb', line 619

def params(name, &block)
  @named_params ||= {}
  @named_params.merge! name => block
end