Class: Rack::RacksonFive

Inherits:
Struct
  • Object
show all
Defined in:
lib/rack/rackson-five.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#appObject

Returns the value of attribute app

Returns:

  • (Object)

    the current value of app



2
3
4
# File 'lib/rack/rackson-five.rb', line 2

def app
  @app
end

#optionsObject

Returns the value of attribute options

Returns:

  • (Object)

    the current value of options



2
3
4
# File 'lib/rack/rackson-five.rb', line 2

def options
  @options
end

Instance Method Details

#call(env) ⇒ Object



3
4
5
6
7
8
9
10
# File 'lib/rack/rackson-five.rb', line 3

def call(env)
  request = Rack::Request.new(env)
  if request.path_info =~ /^\/rackson-five\/(.+)$/
    rackson_five_request($1)
  else
    jacksonify(env)
  end
end