module PadrinoGrape

encoding: UTF-8

Public Class Methods

extended(base) click to toggle source
# File lib/padrino-grape/extend.rb, line 37
def self.extended base
  base.__send__ :extend, ::PadrinoGrape::Extend
  base.__send__ :setup_application!
end
included(base) click to toggle source
# File lib/padrino-grape/extend.rb, line 42
def self.included base
  base.__send__ :extend, ::PadrinoGrape::Extend
  base.__send__ :setup_application!
end