Mlle wrote: > I put the patch file in my project's main directory and then tried to > apply it. > > I got these errors: > > e:~/Work/samples$ git apply erb_encoding_workaround.patch\ > erb_encoding_workaround.patch :117: trailing whitespace. > > error: actionpack/lib/action_view/template_handlers/erb.rb: No such > file or directory > error: actionpack/test/fixtures/test/utf8.html.erb: No such file or > directory > error: actionpack/test/template/render_test.rb: No such file or > directory > error: actionpack/lib/action_view/template_handlers/erb.rb: No such > file or directory > error: actionpack/lib/action_view/renderable.rb: No such file or > directory > error: actionpack/lib/action_view/template_handlers/erb.rb: No such > file or directory > error: actionpack/test/fixtures/test/utf8.html.erb: No such file or > directory > error: actionpack/test/template/render_test.rb: No such file or > directory > error: activesupport/lib/active_support/core_ext/string/multibyte.rb: > No such file or directory > error: activesupport/test/core_ext/string_ext_test.rb: No such file or > directory > > > Did I put the patch in the right place in order to apply it? Why > would it get all those errors?
Because the patch is for the Rails library itself, and you're apparently trying to apply it to your project files. As a result, it's not seeing the files it wants to patch, so of course it complains. > > Thanks! Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

