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 …
26
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 …
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)
…
