class Rack::Jasmine::Runner

Public Instance Methods

call(env) click to toggle source
# File lib/middleman/jasmine/jasmine_sprockets_proxy.rb, line 72
def call(env)
  @path = env["PATH_INFO"]
  [
    200,
    { 'Content-Type' => 'text/html'},
    [@page.render]
  ]
end