class Beez::Rails::Reloader
Public Class Methods
new(app = ::Rails.application)
click to toggle source
# File lib/beez/rails.rb, line 4 def initialize(app = ::Rails.application) @app = app end
Public Instance Methods
call() { || ... }
click to toggle source
# File lib/beez/rails.rb, line 8 def call @app.reloader.wrap do yield end end
inspect()
click to toggle source
# File lib/beez/rails.rb, line 14 def inspect "#<Beez::Rails::Reloader @app=#{@app.class.name}>" end