15
votes
When do you use <% -%> instead of <% %>
<ul>
<% @posts.each do |post| -%>
<li><%=post.title%></li>
<% end -%>
</ul>
There will be no new lines in …
1
vote
Whats the best way to work with Github and multiple computers?
You can also add multiple SSH public keys.
…
2
votes
Starting out doing server side things - what languages and techniques to choose?
Ruby is a fantastic language and the frameworks for web stuff generally teach you some good practices. Try it. The …
0
votes
What is Ruby on Rails and why is it so famous?
It's not a language though. The language is Ruby. Rails is a web framework for Ruby, and so is …
0
votes
Ruby on Rails: hash.each {} issues
You could just put that in your view, rather than assigning it to a variable.
…
1
vote
Anyone know what CMS is using 37signals to manage the site?
And there's Nanoc too, like Webby I think.
…
0
votes
Where do I find documentation for Rails 1.2?
The Agile Web Development with Rails book is from then and covers 1.2.
…
4
votes
Is there equivalent for PHP’s print_r in Ruby / Rails ?
There's the method inspect which helps. Sometimes calling the to_s method on an object will help (to_s returns a string representation of the object). You can also query …
0
votes
1
vote
Ruby CMS/blog: Mephisto vs. Radiant
Mephisto is known for being quite a beast. Maybe you should try out Enki or perhaps go really light-weight and try something in …
2
votes
Nokogiri (RubyGem): Find and replace HTML tags
Seems like this works right:
require 'rubygems'
require 'nokogiri'
markup = Nokogiri::HTML.parse(<<-somehtml)
<html>
<body>
<h1>Foo</h1>
<p>The …
0
votes
How to interpret this Rails error?
In Postgres you can use a serial type for an auto-incrementing field, which will automatically create the necessary sequence. You can use an integer type and manually create the sequence if you wan …
1
vote
How can I find out why my app is slow?
You might want to check out RPM (there's a free "lite" version too) and/or New Relic's …
0
votes
1
vote
