Tagged Questions

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
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) ...
0
votes
1answer
100 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" ...