Tagged Questions
The eruby tag has no wiki summary.
34
votes
7answers
10k views
Should I use haml or erb or erubis for potentially high traffic site?
I have been playing with Haml recently and really like the way the resulting code looks to me...the developer. I'm also not too worried about a designer being able to consume or change it...we're a ...
3
votes
1answer
254 views
rhtml (eruby) apache trouble
I am trying to run embedded ruby inside rhtml.
$cat test.rhtml
<html>
<body>
Testing <% foo = "Ruby"; print "#{foo}!" %>
</body>
</html>
It works fine from the ...
3
votes
3answers
2k views
Which to use, eruby or erb?
What's the difference between eruby and erb? What considerations would drive me to choose one or the other?
My application is generating config files for network devices (routers, load balancers, ...
2
votes
0answers
95 views
nXhtml (No javascript-mode/eruby-javascript)
I've just installed nXhtml by downloading their zip file, extracting the archive into my home directory and adding (load "/home/spinlock/nxhtml/autostart.el") to my .emacs file. My problem is that ...
2
votes
2answers
2k views
Ruby error “Superclass mismatch for for class Cookie” from cgi.rb
I've just updated my ruby installation on my gentoo server to ruby 1.8.6 patchlevel 287 and have started getting an error on one of my eRuby apps. The error given in the apache error_log file is:
...
1
vote
2answers
202 views
Under what cirumstances would I need eruby if I'm just doing Ruby programming
As I understand it, eruby is like erb - it lets you stick ruby code into HTML. If someone is using Rails, more than likely they would use erb or Haml.
But if I'm not using Rails, under what ...
0
votes
1answer
15 views
eruby-nxhtml-mode not loading properly
I have this line in my .emacs file:
(add-to-list 'auto-mode-alist '(".+\\.html\\.erb$" . eruby-nxhtml-mumamo))
however, erb chunks aren't correctly recognised. After I run M-x eruby-nxhtml-mumamo ...
0
votes
1answer
67 views
creating a cron-job template for Puppet
I'm pretty much a novice in speaking Ruby. I'm trying to write a template (.erb) for Puppet. My goal is to based on this variable:
$c_repo = 'repo1,repo1-condb,repo2,....'
to write a template, ...
0
votes
0answers
137 views
Problem connecting to MySQL with eRuby
I'm having a problem connecting my eRuby scripts to my MySQL database.
I've written a short test script just to work out the initial connection bugs:
<%
require 'mysql'
begin
dbh = ...
0
votes
1answer
73 views
Is it possible to define a constant in an eRuby template in Rails
Since I hate calling methods with boolean literals that don't say anything about their intent I tried defining a constant in my eruby template as follows: <% NO_NIL_PADDING = false %> for a call ...
0
votes
1answer
57 views
eruby tags nesting?
I'm currently hosted on a Mediatemple gridserver. I'm writing a site to teach myself Ruby - straight ruby, no rails. I've run into a few errors that appear to be a result of nested tags. For example:
...
0
votes
2answers
360 views
Good code highlighting, syntax analysis and code assist editor on js.erb and css.erb files
I want to know if there is an api that supports nicely eRuby (erb) and JavaScript highlighting, sintax analysis and code assist.
I've already tried Eclipse with Aptana RadRails.
Perhaps I'm ...
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" ...
-1
votes
1answer
49 views
Google Maps listener only firing once?
Hello so basically what I wanted was so when you clicked a marker, it fired of some jQuery that would replace a div's contents. Works perfectly the first time, but afterwards it won't respond. Any ...