File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/main/ruby/rack/handler/servlet Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class DefaultEnv < Hash # The environment must be an instance of Hash !
22
22
BUILTINS = %w( rack.version rack.input rack.errors rack.url_scheme
23
23
rack.multithread rack.multiprocess rack.run_once
24
24
java.servlet_request java.servlet_response java.servlet_context
25
- jruby.rack.version jruby.rack.jruby.version jruby.rack.rack.release ) .
25
+ jruby.rack.version ) .
26
26
map! ( &:freeze )
27
27
28
28
VARIABLES = %w( CONTENT_TYPE CONTENT_LENGTH PATH_INFO QUERY_STRING
@@ -248,8 +248,6 @@ def load_builtin(env, key)
248
248
when 'java.servlet_context' then env [ key ] = servlet_context
249
249
when 'jruby.rack.context' then env [ key ] = rack_context
250
250
when 'jruby.rack.version' then env [ key ] = JRuby ::Rack ::VERSION
251
- when 'jruby.rack.jruby.version' then env [ key ] = JRUBY_VERSION
252
- when 'jruby.rack.rack.release' then env [ key ] = ::Rack . release
253
251
else
254
252
nil
255
253
end
You can’t perform that action at this time.
0 commit comments