Methods
Public Instance methods
[ show source ]
# File actionpack/lib/action_controller/cgi_process.rb, line 6 6: def each 7: while line = gets 8: yield line 9: end 10: end
[ show source ]
# File actionpack/lib/action_controller/cgi_process.rb, line 12 12: def read(*args) 13: if args.empty? 14: super || "" 15: else 16: super 17: end 18: end