Tagged Questions
ERB is a simple templating system for Ruby, embedding code in any plain-text document. It is often used for HTML generation in web frameworks (such as Ruby on Rails).
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 ...
30
votes
1answer
11k views
raw vs. html_safe vs. h to unescape html
Suppose I have the following string
@x = "<a href='#'>Turn me into a link</a>"
In my view, I want a link to be displayed. That is, I don't want everything in @x to be unescaped and ...
13
votes
4answers
607 views
What is the meaning of erb?
Why is the view of Rails application in the format *.erb.html? What does "erb" mean?
12
votes
1answer
996 views
How do I escape ERB code in fixtures?
I have a simple fixture.yml
label:
body: "<%= variable %>"
The issue is that the erb code is parsed as part of loading the fixture, but I actually want to body to be "<%= variable %>" ...
12
votes
6answers
11k views
How do I execute ruby template files (ERB) without a web server from command line?
I need ERB (Ruby's templating system) for templating of non-HTML files.
(Instead, I want to use it for source files such as .java, .cs, ...)
How do I "execute" Ruby templates from command line?
9
votes
4answers
3k views
Best way to add comments in erb
What is the best way to add comments in erb files, if we do not want them to be generated into the html content?
8
votes
4answers
584 views
TextMate js.erb: toggle <%= %>, <% %>
I'm using a js.erb template to render some jQuery. When editing an html.erb file in TextMate, I frequently use the convenient key combo, ctrl+>, to create and then toggle the following tags:
<%= ...
8
votes
3answers
6k views
ERB vs HAML conversion of an if condition?
I am getting started with HAML and am working on my converting my first file.
The ostensibly correct omission of the "- end":
- if current_user
= link_to 'Edit Profile', ...
8
votes
1answer
998 views
What are the main differences between HAML, SASS/Compass and ERB?
I'm looking for a templating engine. What are the important factors to consider when choosing among HAML, SASS/Compass and ERB?
6
votes
1answer
167 views
Avoid *.js.erb files by building all the asset_path values
So I want to avoid processing JavaScript files with ERB just so I can get a proper asset path to, say, an image.
Currently, this seems like the popular approach:
var myImage = "<%= ...
6
votes
3answers
2k views
Handling JSON in JS/ERB template in Rails 3
I have no trouble making typical AJAX calls to and from Rails(3) with JSON objects and jQuery-rails (jQuery library plus a special rails.js file).
In one controller, though, I want to RETURN some ...
6
votes
3answers
10k views
defined? method in Ruby and Rails
I have a quite old templating system written on top of ERB. It relies on ERB templates stored in database. Those are read and rendered. When I want to pass data from one template to another I use the ...
5
votes
1answer
175 views
Reference for using ERB templates in a Java app (via JRuby)
I have a legacy Ruby command line tool that uses (user supplied) ERB templates to format data. I am required to rewrite this tool in Java but I need to avoid having everyone rewrite their ERB ...
5
votes
2answers
2k views
Disable HTML escaping in erb templates
in a rails 3 app i've a domain class where one attribute stores pure html content (it's a blog app, the domain class is Post). In the erb templates, i need to display the content of the attribute as ...
5
votes
2answers
387 views
Rails ERb best practices (<% %> vs <% -%> vs <%- -%>)
What is the recommended use of ERb in Rails when it comes to <% %> (evaluate Ruby code), <% -%> (evaluate Ruby code, suppress the trailing newline) and <%- -%> (evaluate Ruby code, ...
5
votes
3answers
311 views
recognize Ruby code in Treetop grammar
I'm trying to use Treetop to parse an ERB file. I need to be able to handle lines like the following:
<% ruby_code_here %>
<%= other_ruby_code %>
Since Treetop is written in Ruby, and ...
5
votes
4answers
3k views
Block comments in html.erb templates in rails
How do you comment out html mixed with ruby code?
some text <% ... %> more text <%= ... %>
something else
<% ... %>
In jsp it's real simple: <%-- ... --%>, but I'm unable to ...
5
votes
3answers
493 views
Is it possible to get HTML tag autocompletion in Netbeans IDE?
I just installed Netbeans 6.7 for Ruby and one of the things that bugs me is I have to type both the opening and closing HTML tags even though it seems to recognize that I have completed the opening ...
5
votes
4answers
4k views
How to include a css or javascript in an erb that is outside the layout?
Sorry for the slightly noobish question, as I am writing my first rails app. I get the idea of the layout view, but if you are using them, is there any way to include a view specific js or css file? ...
4
votes
2answers
349 views
How do I get escape_javascript and other helpers in my sprockets pre-processed js file (not a view)?
I'm using Rails 3.1 and the sprockets stuff.
I want to use ERB to pre-process a js file that will then be included using javascript_include_tag. It is generated from code, and so I'm pre-processing ...
4
votes
1answer
374 views
Rails3 fields_for on text Hash: not working as expected
I have a rails3 form that allows the user to edit a list of answers, as part of an assessment.
I use a fields_for loop to generate each text input:
app/models/assessment.rb :
class Assessment < ...
4
votes
4answers
192 views
Escaping Line-Returns/End-of-Line in ERB templates
I need to be able to format unprinted logic lines in ERB without affecting the eventual text output of the template. At this point, I don't think that ERB supports such escaping.
This is my first ...
4
votes
3answers
256 views
Pros and Cons of Isotope templates (Rails)
Isotope lets you write templates in javascript. These templates can then be rendered by either the client (using plain-old javascript) or on the server (using Johnson).
The benefit is DRYer code. ...
4
votes
3answers
600 views
Alternatives to ERB
I'm getting more heavily into RoR development. ERB doesn't quite feel right to me. I did this once before with JSP. Embedding Ruby code within my markup doesn't feel like a good plan even if the logic ...
4
votes
3answers
2k views
Rails 3: How to render ERb template in rake task?
I am rendering a pretty huge sitemap HTML file with rake. Unfortunately, the code breaks when I migrate to rails 3. My current code looks like this:
@controller = ActionController::Base.new
...
4
votes
1answer
363 views
Better syntax highlighting for js.erb files in Textmate
I'd like Textmate to highlight Ruby syntax inside <% %> tags in *.js.erb files (like it does in *.html.erb files). Right now it looks like this:
As you can see, everything within the quotes ...
4
votes
1answer
2k views
Erb encoding problem in Rails 3
I'm using Rails 3. I want to display generated html fragment inside erb template
<%= "<div>Foo Bar</div>" %>
Rails encodes div tags.
If I'm correct in Rails 2 <%=h cause ...
4
votes
2answers
151 views
vim: Using <afile> in an autogroup command
My goal is to highlight <basename>.<extension>.erb files as I would highlight <basename>.<extension> files.
As a first pass, I'm fine with supporting ...
4
votes
5answers
500 views
How does one comment in an erb template?
I have some trivial markup that looks like the following:
<li class="someclass">
<=% t'model.attr' %>
</li>
Is there a trivial way to comment that out? Just wrapping <!-- ...
4
votes
5answers
345 views
Rails - How can I detect if the content_for content was provided?
I want to detect if content was provided for content_for tag in my template, and if not fall back to default value:
<title>
<% if content_is_provided -%>
<%= yield :title -%>
...
4
votes
6answers
2k views
Check if Javascript is Enabled (Serverside) with Rails
How would you check if javascript is enabled in Rails? So that I could do something like this in the views:
<div>
<% if javascript_enabled? %>
<p>Javascript ...
4
votes
1answer
1k views
Formatting ERB Templates automatically in textmate
When writing ERB templates in Ruby on Rails using Textmate formatting by hand pretty much sucks.
Do anyone know of a textmate bundle that handles formatting of ERB templates/views? My googling has ...
4
votes
1answer
4k views
Rails, jQuery, .js.erb files, JS not executed by the browser
I'm trying to use jQuery, and everything has been great, until now, when I'm trying to render a partial and append it to a div. Here is how I have it set up:
I have an action that responds to js:
...
4
votes
4answers
4k views
Ruby templates: How to pass variables into inlined ERB?
I have an ERB template inlined into Ruby code:
require 'erb'
DATA = {
:a => "HELLO",
:b => "WORLD",
}
template = ERB.new <<-EOF
current key is: <%= current %>
current value ...
4
votes
2answers
6k views
How do I include HTML in a JS Rails response?
I have a FooController that responds to HTML and JS (AJAX) queries:
# app/controllers/foo_controller.rb:
class FooController < ApplicationController
layout 'foo'
def bar
respond_to do ...
3
votes
2answers
44 views
Conditionally set CSS class
How to convert this ERB code:
<div <%= 'class="highlight"' if job.done %>>
into Haml code?
3
votes
1answer
69 views
Ruby on rails tag functions. Why does the case of radio_button_tag.id not match label.for?
While registering for openstreetmap, on the terms page, I noticed that clicking the labels didn't check the radio buttons associated with them. Here is the html:
<!-- legale is GB -->
<form ...
3
votes
3answers
96 views
How can I access Rails objects in Sass?
In a Rails 3.1.0 project, I have Companies with a few customizable attributes like background_color and link_color. I want to be able to set some Sass variables like so:
$background_color: <%= ...
3
votes
1answer
112 views
How can I change the order template engines are used in Rails 3.0.10?
Given I have the view templates index.html.erb ,index.html.haml and index.html.slim in the same directory. How can I configure Rails to first use the slim templates if present, then the haml template ...
3
votes
1answer
159 views
How do i enable tabwidth of 2 in eclipse for erb?
How can i enable tabwidth and indent width of 2 in erb files in Eclipse ?
3
votes
2answers
217 views
Can you get ERB to properly indent when rendered?
I have several partials that I'm including in my Rails application.html.erb file, but the resulting HTML doesn't preserve my indenting (formatting). I've been told that the first line gets rendered ...
3
votes
1answer
168 views
surround.vim: deleting embedded ruby tags
Using surround.vim, while in an .html.erb file, if I type ysw= in front of 'text' it will correctly give me <%= text %>.
However, if I move the cursor over 'text' and type ds=, it doesn't delete ...
3
votes
3answers
322 views
“#{ }” notation vs. erb notation
What are the differences between the notation:
"
some text
#{some_ruby_code}
some text
#{some_more_ruby_code}
some_other_text
"
and
ERB.new("
some text
<%=some_ruby_code%>
...
3
votes
3answers
88 views
What's the difference between <% code %> and <%= code %> in Rails erb?
There seems to be a difference between the two, Though I can't tell what exactly.
<% code %>
And
<%= code %>
3
votes
2answers
273 views
RoR: what are the benefits of erb in Rails code?
I read an evocative post by Magnus Holm entitled Block Helpers in Rails 3, in which he points out that Rails 3 has bent the syntax of ERB too far. (In 'original' ERB, an ERB construct can only span a ...
3
votes
1answer
637 views
Embedding an ejs template inside of an erb template
I'm building a javascript-heavy rails 3 app. It uses underscore.js, which has a very elegant templating mechanism built on top of ejs ( http://embeddedjs.com/).
The problem: embeddedjs borrows ...
3
votes
5answers
2k views
Vim html.erb snippets?? snipMate Need a vim tip!
I've started using Vim for my rails development (who hasn't!)..
And i'm loving it except that when im in a html.erb file (HTML and Ruby)..
I get no snipMate snippets,
I would like both html and ...
3
votes
2answers
682 views
Dynamic class name in HAML
Is there a better way to convert the following to HAML?
<% flash.each do |key, value| %>
<div class="flash <%= key %>"><%= value %></div>
<% end %>
Best I can ...
3
votes
1answer
205 views
How to create PHP/JSP/ERB tags using XSLT?
I have a bunch of XML files which I use to generate HTML pages. Those pages ultimately get marked up (by hand) with some <%= %> tags and made into Ruby .erb templates.
Is there a way to ...
3
votes
2answers
243 views
Continuously Check Time
Firstly, how can I have jQuery continuously check the time, and add an id to a <div> tag if the current time is in between two set times? I'm making a clock for a school (where the clock is a ...