Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T04:36:58Zhttp://stackoverflow.com/feeds/question/389178http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/389178/using-erubis-2-6-2-with-rails-2-2-2-is-incompatible1Using Erubis 2.6.2 with Rails 2.2.2 is incompatible?The Wicked Flea2008-12-23T15:34:49Z2009-06-18T11:37:00Z
<p>Supposedly installing <a href="http://www.kuwata-lab.com/erubis/" rel="nofollow">erubis</a> is as simple as:</p>
<pre><code>gem install erubis
# And in environment.rb:
require 'erubis/helpers/rails_helper'
</code></pre>
<p>But I haven't found this to be so. Note that there are no evident errors in my code; it runs just fine and dandy with ERB.</p>
<ol>
<li>Where do I put this line? Directly after the <code>boot.rb</code> inclusion it fails to start the server, and at the end of the file I get an unexpected nil object error (nil.controller). Where is best?</li>
<li>Are there known conflicts with the given versions?</li>
<li>Are there any workarounds I can utilize to get erubis functioning?</li>
</ol>
http://stackoverflow.com/questions/389178/using-erubis-2-6-2-with-rails-2-2-2-is-incompatible/392697#3926971Answer by August Lilleaas for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible?August Lilleaas2008-12-25T09:57:25Z2008-12-25T09:57:25Z<ol>
<li>Either put it on the bottom or environment.rb, or put it in an initializer (config/initializers/anything.rb). When you put it before the Rails::Initializer block, the rails environment hasn't fully loaded yet, and erubis/helpers/rails_helpers seems to assume a fully loaded Rails environment.</li>
<li>I have never used erubis, so I can't answer that.</li>
<li>Workarounds? See #1, I guess.</li>
</ol>
http://stackoverflow.com/questions/389178/using-erubis-2-6-2-with-rails-2-2-2-is-incompatible/579076#5790761Answer by Will Sargent for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible?Will Sargent2009-02-23T19:52:56Z2009-02-23T19:52:56Z<p>Apparently this is broken:</p>
<p><a href="http://kleinptr.wordpress.com/2009/02/04/erubis-and-rails-222/" rel="nofollow">http://kleinptr.wordpress.com/2009/02/04/erubis-and-rails-222/</a></p>
<p>and they're working on a fix:</p>
<p><a href="http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/328613" rel="nofollow">http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/328613</a></p>
http://stackoverflow.com/questions/389178/using-erubis-2-6-2-with-rails-2-2-2-is-incompatible/1012189#10121891Answer by dave elkins for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible?dave elkins2009-06-18T11:37:00Z2009-06-18T11:37:00Z<p>The latest Erubis (2.6.4) and Rails 2.2 (and 2.3) are still not compatible. The main issue is that the generated ruby code from Erubis uses "_buf" as the buffer variable and Rails 2.2 and 2.3 require "@output_buffer" to be used.</p>
<p>The reason for "@output_buffer" to be used is that ActionView helpers like CaptureHelper are designed around "@output_buffer" being the primary buffer in the generated code.</p>
<p>I have created a gem called <a href="http://github.com/elkinsware/erubis%5Frails%5Fhelper/tree/master" rel="nofollow">elkinsware-erubis_rails_helper</a> that fixes these issues and allows Erubis and Rails 2.3 (for sure but it should work for 2.2). </p>
<p>In your environment.rb file add:</p>
<pre><code> config.gem 'erubis' , :version => '2.6.4'
config.gem 'elkinsware-erubis_rails_helper', :lib => 'erubis_rails_helper', :source => 'http://gems.github.com'
</code></pre>
<p>And then you can add a config/initializers/erubis_config.rb where you can adjust the Erubis/Rails options.</p>
<pre><code> #Erubis::Helpers::RailsHelper.engine_class = Erubis::Eruby # or Erubis::FastEruby
#Erubis::Helpers::RailsHelper.init_properties = {}
#Erubis::Helpers::RailsHelper.show_src = false
#Erubis::Helpers::RailsHelper.preprocessing = true
</code></pre>
<p>The source is at <a href="http://github.com/elkinsware/erubis%5Frails%5Fhelper/tree/master" rel="nofollow">http://github.com/elkinsware/erubis_rails_helper/tree/master</a></p>
<p>Let me know if you have any issues with the gem.</p>