Showing app/views/layouts/admin.html.erb where line #51 raised: undefined method `^'' for "0":String Extracted source (around line #51): 48: <br class="clear"/> 49: </div> 50: <div class="clear" id="content"> 51: <% if flash[:notice] %> 52: <div class="notice"><%= flash[:notice] %></div> 53: <% end %> 54: -- Posted via http://www.ruby-forum.com/.
You might be running into the issue mentioned here - https://rails.lighthouseapp.com/projects/8994/tickets/3144-undefined-method-for-string-ror-234 If so, there is a patch for it in the link :) Regards, Kashyap
C K Kashyap wrote:> You might be running into the issue mentioned here - > https://rails.lighthouseapp.com/projects/8994/tickets/3144-undefined-method-for-string-ror-234 > > If so, there is a patch for it in the link :) > > Regards, > Kashyaphow to? -- Posted via http://www.ruby-forum.com/.
> > how to? > --download the patch_file from the link I sent - If you are on a unix like os - you need to navigate to (your gem installation path)/activesupport/lib/active_support and run patch -p1 < patch_file and provide the name message_verifier.rb if on windows just google and find out how to apply the patch ... in the worst case, open the patch file and figure out the changes that need to be done in message_verifier.rb...