class ForemanThemeSatellite::PryRack

Public Class Methods

new(app) click to toggle source
# File lib/foreman_theme_satellite/pry_rack.rb, line 3
def initialize(app)
  @app = app
end

Public Instance Methods

call(env) click to toggle source
# File lib/foreman_theme_satellite/pry_rack.rb, line 7
def call(env)
   binding.pry
   @app.call(env)
 end