Tagged Questions

11
votes
4answers
248 views

Using a Rails helper method within a javascript asset

Is there any way to use a Rails helper method, more specifically, a path helper method within a javascript asset file. This file foo.js.coffee.erb $('#bar').val("<%= create_post_path %>") I ...
5
votes
4answers
531 views

Erubis block helper throwing error with concat

I have a couple of block helpers, here's a simple example of what I'm doing: def wrap_foo foo, &block data = capture(&block) content = " <div class=\"foo\" id=\"#{foo}\"> ...
3
votes
1answer
184 views

Rails HTML escapes plaintext emails

So, Rails has the wonderful capability of sending plaintext emails alongside HTML emails. You just put up a .text.erb alongside your .html.erb. I put up an application to this effect here: ...
2
votes
1answer
429 views

Ruby on Rails: What are Erubis' disadvantages and why isn't it packaged with Rails by default? How to set it up?

I just discovered Erubis, a replacement for the default view renderer for Ruby on Rails. However, from what I can tell from reading about it, it's superior across the board. It is much faster. It has ...
2
votes
3answers
953 views

Using Erubis 2.6.2 with Rails 2.2.2 is incompatible?

Supposedly installing erubis is as simple as: gem install erubis # And in environment.rb: require 'erubis/helpers/rails_helper' But I haven't found this to be so. Note that there are no evident ...
1
vote
5answers
528 views

How to comment code in Rails views?

As I'm playing with Rails and developing views I often want to comment out code. Simple enough with classes & models but views are a bit more tricky. What's best way to comment code in a view ...
1
vote
3answers
308 views

Is there any way to disable Erubis from printing “** Erubis 2.6.5” when starting the Rails environment?

I have several frequent Cron jobs that are run via Rake and the output of those jobs are e-mailed (via a MAILTO). Due to the fact that these tasks load the Rails environment (which includes Erubis) ...
1
vote
1answer
471 views

Rails 2.3.5 with rails_xss escaping content_for yielded content

Just upgraded Rails to 2.3.5 to get the lovely looking rails_xss plugin but I've noticed one big issue with it. Any content_for blocks are escaped when yielded. I've tried hacking it around by doing ...