Project

General

Profile

Backport #9161

Updated by nobu (Nobuyoshi Nakada) over 10 years ago

=begin 
 There seems to be a syntax bug within mime_responds.rb, under , under version 1.9.3, action-pack 3.2.11, metal action controller 

 Under line 191, mimes local is not declared, and there is an additional end associated with the code nearby. 
  raise 
 (({raise ArgumentError, "respond_to takes either types or a block, never both" if mimes.any? && block_given? 

         if collector = retrieve_collector_from_mimes(mimes, &block) 
           response = collector.response 
           response ? response.call : default_render({}) 
         end 
 =end})) 

 This revealed after upgrading to RubyMine 6.0, when loading local server environment. 

 This is closed to a comments section, so perhaps it was once commented by default? 

 =end 
 


 

Back