Questions and answers for Michael Hartl's railstutorial.org. Please follow the instructions on the Rails Tutorial Help page.
71
votes
5answers
15k views
Global access to Rake DSL methods is deprecated
I am working through the Ruby on Rails 3 tutorial book and typed the following on the command line:
rake db:migrate
which produced the following warning.
WARNING: Global access to Rake DSL methods ...
9
votes
4answers
344 views
SessionsHelper in railstutorial.org: Should helpers be general-purpose modules for code not needed in views?
railstutorial.org has a suggestion which strikes me as a little odd.
It suggests this code:
class ApplicationController < ActionController::Base
protect_from_forgery
include ...
5
votes
5answers
408 views
Development.log log file isn't logging Rails SQL queries
I am following Michael Hartl's Rails Tutorial Here:
http://ruby.railstutorial.org/chapters/modeling-and-viewing-users-one#top
I use this command to track the SQL queries in a separate window:
tail ...
5
votes
2answers
1k views
Could not find table 'users'
UPDATE 4
See solution below!
*Update 3 *
If anyone is actually still reading this (I appreciate it!) I've been struggling around my code today (yes still a noob and in chapter 11 of the ruby on ...
5
votes
5answers
494 views
Button doesn't update in Ajax - Rails Tutorial 3 at §12.2.5
I'm going through the Rails Tutorial by Michael Hartl and hit a small snag at §12.2.5 where we're supposed to create a working button with Ajax. I know the code is correct (I wound up copying it ...
4
votes
1answer
63 views
Why use match rather than get when routing in Rails?
In the Ruby on Rails 3 tutorial, the code uses:
match '/signup', :to => 'users#new'
match '/signin', :to => 'sessions#new'
match '/signout', :to => 'sessions#destroy'
match '/contact', ...
4
votes
6answers
554 views
Why are my RSpec tests failing, but my app is working?
I just finished chapter 10 of the Ruby on Rails Tutorial, adding the ability to edit/update, index, and destroy users. Everything appears to be working properly in my app, but many of my tests are ...
4
votes
1answer
260 views
RailsTutorial Sign In flash not working
I am trying to get the error flash to appear in the railstutorial.org sample app. So far this is what I have done. Can anyone help me find the error:
My RSPEC test fail:
1) SessionsController POST ...
3
votes
1answer
68 views
Railstutorial.org Validating unique email
In section 6.2.4 of Ruby on Rails 3 Tutorial, Michael Hartl describes a caveat about checking uniqueness for email addresses: If two identical requests come close in time, request A can pass ...
3
votes
1answer
166 views
Factory Girl vs. User.create — what's the difference?
This is an additional note to the question "Factory Girl - what's the purpose?"
I'm not sure whether my question is counted as a repetitive one, but I'm simply still not very clear after reading that ...
2
votes
1answer
38 views
“No such column” error when using following_ids map on Rails Turorial - may be caused by array square brackets?
I'm attempting to complete section 12.3 of the railstutorial.org tutorial.
At the beginning of section 12.3, my rspec tests were passing and the site worked. However, after adding the listing in ...
2
votes
1answer
95 views
Rspec reliability with routing. (Rails by Example RoR Tutorial )
I'm having a frustrating time with Rspec while working through the Ruby on Rails Learn by Example tutorial on 5.2.
I'm currently trying to test my routing using rspec and the tests always comes back ...
2
votes
2answers
55 views
Railstutorial.org Validating presence tests
I've been working through the tutorials at railstutorial.org, and I was a little stumped by the author's code for section -- 6.2.1 Validating presence.
In the user model, the tutorial adds validates ...
2
votes
3answers
86 views
Why “bundle install” a gem instead of “gem install” for a rails 3 app?
I'm a beginner programmer going through the railstutorial by michael hartl, and notice that the process for using gems in the application is through adding it to the gemfile, and then doing a:
$ ...
2
votes
1answer
607 views
Get undefined method with sprockets 2.0 (can use 2.0.0.beta.15) with Rails 3.1.0.rc5 for Michael Hartl's Rails Tutorial sample_app project
Bundle install is green, but when I run "rake" I get the following:
rake aborted! undefined method `static_root=' for
#<Sprockets::Environment:0x16b6b78> ... Tasks: TOP => default => spec
...
2
votes
4answers
190 views
Michael Hartl's Rails Tutorial: User.find(1) after destroy method shows stack trace
I'm going through Michael Hartl's Rails tutorial, specifically Chapter 6:
http://ruby.railstutorial.org/chapters/modeling-and-viewing-users-one#sec:finding_user_objects
after I do the User.find(1) ...
2
votes
1answer
157 views
I'm using RVM, what is the difference between using bundle install and rvm bundle install?
I would like to know the difference?
I can run both and they install but what is the actual difference?
I'm doing a tutorial/screencast by michael hart and he uses bundle install, how does this ...
2
votes
2answers
326 views
Does anyone know which TextMate theme Michael Hartl uses in his Ruby on Rails Tutorial?
As the title says... Does anyone know which TextMate theme Michael Hartl uses in his Ruby on Rails Tutorial? I googled for it but can't see that the question has been asked before.
...
2
votes
1answer
447 views
Rails Tutorial — 9.3.3 Current_User
So I'm following the Rails Tutorial, and I've gotten to the portion where we want to sign a user in with a sign_in SessionHelper.
Question 1:
module SessionsHelper
def sign_in(user)
...
1
vote
1answer
43 views
RoR Tutorial Chapter 4.1.1, confused why title helper doesn't fail
I'm going through Michael Hartl's Ruby on Rails 3.2 Tutorial and I'm confused about why the title helper found in Section 4.1.1 doesn't fail.
He talks about needing a title helper in the event that ...
1
vote
1answer
108 views
Michael Hartl's book differencies between Rails 3.0 and Rails 3.2
I'm learning Ruby on Rails from Michael Hartl's book. I really enjoy this writing, structured and clear. Nevertheless, I have a question about chapter 3.3 differences between Rails 3.0 and Rails 3.2 ...
1
vote
2answers
30 views
syntax error, unexpected ':' in site layout section of railstutorial.org
I'm following a RoR tutorial and I'm following directions exactly (or so I think).
This is my app/views/static_pages/home.html.erb file:
<% provide(:title, 'Home') %>
<h1>Sample ...
1
vote
0answers
103 views
How to use 'Has_secure_password', when trying to refactor?
I am trying to refactor the railstutorial authorization mechanism.
My version of rails is 3.2.0 and I am using ruby 1.9.3-p0 and postrgresql 9.1.
So far, my tests are passing when it comes to a ...
1
vote
2answers
71 views
Michael Hartl's Rails Tutorial 3 - Ch. 2 Ex 2.2 - cannot get Rails Generate Scaffold User… to work
Trying to learn the Ruby on Rails 3 Tutorial book, hung up right now: Section 2.2
example says:
rails generate scaffold User name:string email:string
I get:
...
1
vote
2answers
72 views
500 error when I deploy my app to Heroku
I am getting a 500 error when I try to deploy my app to Heroku (it works fine on my localhost). Not sure why this is happening.
How can I fix it? Error details are below...
Error Details
...
1
vote
1answer
45 views
NoMethodError in PagesController#home
I'm working through the Rails Tutorial Chapter 12, and get the following error on the Home/Main page when user is signed out (signed in is OK):
I'm a newbie to Rails so please be explicit in your ...
1
vote
2answers
149 views
In the ROR Tutorial, rails can't find CSS files (custom.css & blueprint) or logo.png
In section 5.1 of the tutorial, Rails can't seem to find the CSS file (custom.css or the blueprint files) or logo.png. I have triple-checked the code and it's identical to what is in the git ...
1
vote
2answers
129 views
Changing from Prototype to JQuery leads to double POST
In chapter 12 of Ruby on Rails Tutorial by Michael Hartl, there is a button on user's profile page you can flip to follow or unfollow him/her. (See figure 12.12 and 12.13)
I am using rvm 1.8.6 and ...
1
vote
1answer
245 views
rails tutorial - activerecord:connectionnotestablished error - after running rails S
I'm a Ruby on Rails Amateur currently learning from Michael Hartl's RailsTutorials.
I followed instructions on Ror tutorial, and after Listing 3.5, I didn't get the expected outcome.
After running ...
1
vote
1answer
138 views
No color in Rspec output but color in autotest
I'm running:
+ Ruby 1.9.2p290
+ Rails 3.1.1
+ Rspec 2.6.0
+ autotest 4.4.6
+ ansicon 1.40
+ spork
+ growl
on Windows Vista 64-bit to go through the rails 3 tutorial. The tests seem to run fine and I ...
1
vote
1answer
144 views
Issue with bundler or gems I can't work out when I type 'bundle exec rake spec'
I'm trying to run the command
bundle exec rake spec
but it returns the following:
/Library/Ruby/Gems/1.8/gems/bundler-1.0.21/lib/bundler/shared_helpers.rb:2:in `require': no such file to load -- ...
1
vote
2answers
614 views
Rails Tutorial: before_filter deprecated
Section 10.2.1 of the Rails Tutorial utilizes before_filter which is deprecated. What's the modern idiomatic way to write the code in UsersController so as to not use before_filter?
Here's a version ...
1
vote
2answers
87 views
Help me understand this syntax in railstutorial.org (the section on Factory Girl)
I am in chapter 7 of the railstutorial.org, and the author is starting to explain less and less of the syntax and details of the course.
I dont understand the following syntax he uses when creating a ...
1
vote
4answers
251 views
Confused about 'respond_to' vs 'respond_to?' (Ruby on Rails)
I am learning Rails with railstutorial.org, and I am confused about something:
in this chapter the author tells us to do some testing in the console with the respond_to? method on a User object, and ...
1
vote
1answer
141 views
Problem with customising the follow functionality from chapter 12 of railstutorial.org
I'm trying to implement the follow functionality from chapter 12 of Michael Hartl's Ruby on Rails tutorial but i'm new to Rails and i fear i've bitten off more than i can chew.
My app uses devise and ...
1
vote
2answers
1k views
Problems using rake db:migrate on railstutorial.org chapter 2
I am following the rails tutorial at railstutorial.org
I'm in chapter 2 and tried to rake de per the instructions "To proceed with the demo application, we first need to migrate the database using ...
1
vote
1answer
165 views
Rails Tutorial 3: rspec tests fail after chapter 9.4
I can't for the life of me figure out what's wrong with my code. I think I've followed everything word for word from Rails Tutorial 3 book but my tests won't pass any more.
It looks as if the Factory ...
1
vote
1answer
378 views
Michael Hartl's Rails 3 Tutorial: Problem with has_password? method in Chapter 7
This has been kicking my butt all morning.
Right now, I'm just beginning Chapter 7.2.4 of Michael Hartl's excellent Ruby on Rails 3 Tutorial, and I'm running into some issues. The section begins with ...
1
vote
2answers
152 views
Rails Tutorial 3 : Can't get app to work after section 9.3.3
I've been faithfully been following along with Rails Tutorial 3 and been loving it but am totally stuck with where I've gone wrong after section 9.3.3. Signin Success -> Current user.
I run the rspec ...
0
votes
1answer
21 views
RailsTutorial 3.2 Ch 11 - PostgreSQL syntax error breaks the status feed
I'm in Section 11.3.1 of the Rails Tutorial, and all tests were passing prior to this. Afterward, the home page (which has the micropost feed) breaks with this error:
PG::Error: ERROR: invalid input ...
0
votes
0answers
24 views
Buttons using Ajax don't work on Heroku
Here I am following Michael Hartl's famous Ruby on Rails Tutorials (Rails 3.2).
The section of "11.2.5 A working follow button with Ajax" works in local machine but doesn't work on Heroku.
When I ...
0
votes
1answer
26 views
Michael Hartl's Rails 3 Tutorial: Section 3.2.2. Missing RSpec view/controller generation
I'm working through Michael Hartl's excellent Rails 3 Tutorial book, but I am stuck at section 3.2.2. in which he refers to rspec tests being auto-generated from
rails generate Pages home contact
...
0
votes
1answer
40 views
RailsTutorial 3.2 Ch 9 - “before { valid_signin(user) }” causes RSpec test to fail
I'm currently in RailsTutorial 3.2, Section 9.3.1 User Index.
Listing 9.27 directs an edit to the spec/requests/authentication_pages_spec.rb code as follows:
require 'spec_helper'
describe ...
0
votes
1answer
44 views
undefined local variable or method `summitted_password' Ruby on Rails Tutorial Chapter 9
I'm reading Ruby on Rails tutorial. On chapter 9 after wrote all the code, for sign in and remember me code. My rspec test still fail. this are the exactly error:
Failures:
1) SessionsController ...
0
votes
1answer
37 views
ruby on rails 3 tutorial book chapter9 Signin Failure
Hi I have problem trying to pass the signin failure test.
This is the test code of the sessions_controller.rb
def create
user = User.authenticate(params[:session][:email],
...
0
votes
2answers
96 views
RoR Tutorial (Chapter 10.4) - admin attributes tests fail
I'm a RoR-Learner and I made my way to the RoR-Tutorial by Michael Hartl, but actually I'm facing a problem at Chapter 10.4. I did all the Listings up to 10.42, but 3 of my Rspec-Tests are failing.
...
0
votes
2answers
100 views
Rails Tutorial Chapter 10 RSpec Failures by the end of chapter
I'm working on the Rails tutorial and as follow the instructions, I always get the results expected but after finishing chapter 10, I get the bellow errors and I can't find what it the issue is.
1) ...
0
votes
7answers
90 views
Ruby (on Rails) syntax
I am working back through the "Ruby on Rails 3 Tutorial" and trying to understand the syntax at a deeper level. Here is some example code from a helper action that I have defined:
module ...
0
votes
2answers
80 views
Rails tutorial will_paginate raises undefined_method total_pages
Ive been stuck for a while now in the rails tutorial. Im in section 10.3, where we are supposed to add pagination. I have added the gem 'will-paginate' to my Gemfile, and this is the index view
...
0
votes
1answer
41 views
integration_sign_up in railstutorial chapter 9 exercises not working
I am learning rais from the rails tutorial book: http://ruby.railstutorial.org/chapters/sign-in-sign-out#fnref:9.14
I am working on the exercise. The assignment is to create a sign in method in spec ...