Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:36:58Z http://stackoverflow.com/feeds/question/389178 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/389178/using-erubis-2-6-2-with-rails-2-2-2-is-incompatible 1 Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? The Wicked Flea 2008-12-23T15:34:49Z 2009-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#392697 1 Answer by August Lilleaas for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? August Lilleaas 2008-12-25T09:57:25Z 2008-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#579076 1 Answer by Will Sargent for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? Will Sargent 2009-02-23T19:52:56Z 2009-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#1012189 1 Answer by dave elkins for Using Erubis 2.6.2 with Rails 2.2.2 is incompatible? dave elkins 2009-06-18T11:37:00Z 2009-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 =&gt; '2.6.4' config.gem 'elkinsware-erubis_rails_helper', :lib =&gt; 'erubis_rails_helper', :source =&gt; '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>