Method: FCGI.each_cgi

Defined in:
lib/cgialt/fcgi/cgi_helper.rb,
lib/cgialt/fcgi/cgi_helper.rb

.each_cgi(arg = nil) {|CGI.new(arg)| ... } ⇒ Object

Yields:

  • (CGI.new(arg))


22
23
24
25
# File 'lib/cgialt/fcgi/cgi_helper.rb', line 22

def FCGI.each_cgi(arg=nil)
  #require 'cgialt' unless defined?(CGI)
  yield CGI.new(arg)
end