module Oboe::Grape::API

Public Class Methods

extended(klass) click to toggle source
# File lib/oboe/frameworks/grape.rb, line 7
def self.extended(klass)
  ::Oboe::Util.class_method_alias(klass, :inherited, ::Grape::API)
end

Public Instance Methods

inherited_with_oboe(subclass) click to toggle source
# File lib/oboe/frameworks/grape.rb, line 11
def inherited_with_oboe(subclass)
  inherited_without_oboe(subclass)

  subclass.use ::Oboe::Rack
end