10
votes
8answers
2k views
Why is RSpec so slow under Rails?
Whenever I run rspec tests for my Rails application it takes forever and a day of overhead before it actually starts running tests. Why is rspec so slow? Is there a way to speed up Rails' initial …
24
votes
Learning Ruby on Rails
Path of least resistance:
Have a simple web project in mind.
Go to rubyonrails.org and look at their "Blog in 15 minutes" screencast to get excited.
…
0
votes
Learning Ruby on Rails
Wait a couple of months for Learning Rails by Simon St. Laurent, Edd Dumbill to come ou …
2
votes
Best Editor or IDE for Ruby?
Emacs has syntax highlighting and code completion for Ruby and Rails. It is also rad.
If you want to be a programmer for the rest of your life, and you want to have an editor you can tak …
6
votes
Best ruby idiom for “nil or zero”
You can use the Object.nil? to test for nil specifically (and not get caught up between false and nil). You can monkey-patch a method into Object as well.
class Object
def nil …
1
vote
Rails: How do I check if a column has a value?
This is what you asked for:
<% for agent in @broker.agents %>
<% unless agent.cell.blank? %>
<span class="cell-number">Cell: <%= agent.cell %></span …
2
votes
NoMethodError when trying to invoke helper method from Rails controller
Helper Methods from Controllers
One way to get at your helper methods is simply to include your helper file.
include LoginHelper
cool_login_helper_method(x,y,z)
…
1
vote
Sort a list of objects by using their attributes in Ruby
Let's assume that your basket is an Array or a subclass thereof.
The Fast Way
Enumerable.sort …
