Module: GrapePathHelpers::NamedRouteMatcher
- Defined in:
- lib/grape-path-helpers/named_route_matcher.rb
Overview
methods to extend Grape::Endpoint so that calls to unknown methods will look for a route with a matching helper function name
Instance Method Summary collapse
- #method_missing(method_name, *args) ⇒ Object
- #respond_to_missing?(method_name, _include_private = false) ⇒ Boolean
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/grape-path-helpers/named_route_matcher.rb', line 6 def method_missing(method_name, *args) possible_routes = Grape::API::Instance .decorated_routes_by_helper_name[method_name] return super unless possible_routes segments = args.first || {} return super unless segments.is_a?(Hash) requested_segments = segments.keys.map(&:to_s) route = possible_routes.detect do |r| r.uses_segments_in_path_helper?(requested_segments) end if route route.send(method_name, *args) else super end end |
Instance Method Details
#respond_to_missing?(method_name, _include_private = false) ⇒ Boolean
28 29 30 31 |
# File 'lib/grape-path-helpers/named_route_matcher.rb', line 28 def respond_to_missing?(method_name, _include_private = false) !Grape::API::Instance.decorated_routes_by_helper_name[method_name].nil? || super end |