module Mushin::Ext
Public Class Methods
new(app)
click to toggle source
# File lib/mushin/ext.rb, line 4 def initialize app raise NotImplementedError, "Mushin Extenstions implement :initialize that takes an app" end
Public Instance Methods
call(env)
click to toggle source
# File lib/mushin/ext.rb, line 7 def call env raise NotImplementedError, "Mushin Extenstions implement :call that takes an env" end