Tagged Questions
The erubis tag has no wiki summary.
11
votes
4answers
250 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
2answers
108 views
Error traces in Erubis
By default, when an an Erubis template raises an error, you get something like this:
(erubis):32:in `evaluate': compile error (SyntaxError)
(erubis):30: syntax error, unexpected ')', expecting ']'
...
1
vote
5answers
533 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
1answer
98 views
How to use erubis with mamp
i found out erubis, the "fast, secure, and very extensible implementation of eRuby",
now after install through gem install erubis, my question is how to run in on mac?
especially on mamp?
i been no ...
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
473 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 ...
0
votes
1answer
101 views
Create your own tags/functions with Erubis
I have a ruby class that extends Erubis (a ruby templating engine) and I would like to create my own tags. The following is an example of what i'd like to be reproduce:
<%= link_to "/some/url" ...