Questions and answers for Michael Hartl's railstutorial.org

learn more… | top users | synonyms

0
votes
1answer
18 views

Michael Hartl's Rails Tutorial, 7.3 Capybara::ElementNotFound

I'm in Section 7.3.1 of the Hartl's Rails tutorial and am getting the following error: Capybara::ElementNotFound: no button with value or id or text 'Create my account' found but as far as I can ...
0
votes
2answers
23 views

undefined method `save' making test fail before testing to the end

I am following ruby.railstutorial.org. I have had some troubles, but I solved them. Now, however, I am googling for quite some time, checked the code, I even have an idea why test fails, but have no ...
0
votes
1answer
50 views

Rspec test fail Hartl tutorial Chap. 9.1 - fails on Edit User title

I'm still stuck on Edit User Chapter 9.1.1 test, though I worked out the first set of error messages -- thanks to you guys for the help on that. A new test failure error has arisen in the same ...
0
votes
2answers
42 views

Failing test on Hartl tutorial 9.1 - User Edit page

I've been attempting a number of suggestions through the other Questions here, but can't figure this one out. Hartl Tutorial Ch. 9.1.1 ...
-4
votes
0answers
23 views

Minor test error

Failure/Error: before { sign_in user } NoMethodError: undefined method sign_in' for #<RSpec::Core::ExampleGroup::Nested_1::Nested_3::Nested_2::Nested_1:0x00000004d10db8> # ...
1
vote
0answers
71 views

Rspec Error in end of Section 10.1.3 of Michael Hartl's Rials tutorial

I am on Section 10.1.3 of the tutorial http://ruby.railstutorial.org/chapters/user-microposts#sec-user_micropost_associations. I am using rails 3.1.1 and ruby 1.9.2 When I run the spec test bundle ...
2
votes
1answer
44 views

Rails: Delete request in capybara, bug or my mistake?

I'm a noob at Rails so please correct me if I'm wrong. In Michael Hartl's Rails Tutorial (Rails 3.2), in Listing 9.52: describe "when signing in again" do before do delete ...
-1
votes
1answer
50 views

rails tutorial 2nd edition. chapter 6.3.4

I hope someone can help. I am going through Michael Hartl's rails tutorial book and am stuck on chapter 6.3.4. I am trying to get all the tests to validate and I keep getting several errors. I have ...
1
vote
1answer
36 views

Ruby on Rails Tutorial by Michael Hartl, Chapter 8, “Current User” section

I'm new to Rails and have been going through the Rails Tutorial by Michael Hartl. Up until this point, I've been able to understand everything in the tutorial but now I think I'm stuck midway through ...
0
votes
1answer
35 views

Failing Tests for Authentication - Rails allow signin success method - Hartl Chapter 8.2

Help, I feel down a User Authentication hole and can't get out!! I've been working through M. Hartl's tutorial on Rails -- I'm pretty green. My authentication tests won't pass. I have 24 errors ...
1
vote
1answer
46 views

Error after adding @import “bootstrap”; ArgumentError in Static_pages#home

I'm at 5.1.2 of the railstutorial, I have just installed Bootstrap-sass (I've double checked, the gem is there). http://ruby.railstutorial.org/chapters/filling-in-the-layout#top I added this file: ...
0
votes
1answer
45 views

rails tutorial 10.3.3 feed_item failing test

I get down to 10.43 without errors, however the following errors occurred after attempting to create a micropost. The tutorial says this would happen and that I would need to go and enter a blank ...
0
votes
1answer
42 views

rails console --sandbox doesn't rollback on exit

I'm following the Ruby on Rails Tutorial, but I want to have the same environment in production as in development, that is why I setup postgres. The thing is when I run: rails console --sandbox ...
1
vote
0answers
34 views

ArgumentError in Static_pages#home [Ch.10 MHartl Rails tutorial]

Wrapping up the Mhartl rails tutorial and I've been hit with this error. Error message: Showing /Users/Me/Sites/rails_projects_updated/first_app/app/views/shared/_feed_item.html.erb where line #2 ...
0
votes
1answer
63 views

Cannot get this simple code to work from the Michael Hartl Tutorial

So I am very new to rails and I am taking this tutorial and ran into the following problem. So I have set up my view/helpers/application_helper.rb like this: module ApplicationHelper # Returns the ...
0
votes
1answer
64 views

Hartl's rails tutorial completed works locally perfect. Heroku persists “We're sorry, but something went wrong.”

I'm new to Ruby on Rails (new to programming altogether) and this is my first post on stack overflow. I want to thank everyone in advance because I have learned so much from previous posts. I ...
1
vote
3answers
73 views

Rspec test failing miserably

So I've seen several questions on here somewhat similar to mine, but not quite close enough to help me figure out what my issue is...so any help on what i'm doing wrong would be appreciated: (I'm ...
0
votes
1answer
38 views

Rails - 1 User model, but 2 Profile type models?

Just finished Michael Hartl's Tutorial, so this is kind of a newbie question. But, after lots of searching, I have not yet been convinced of a good solution for this: I have a single User model that ...
0
votes
1answer
46 views

Heroku messing up CSS following Hartl's Rails tutorial

I am having a problem with microposts rendering correctly on heroku, but not on localhost. I am following Hartl's Rails Tutorial guide. Here is an imgur album showing the issue. The first image is ...
1
vote
1answer
42 views

RailsTutorial Chp 3 (Section 3.2.2) [closed]

Here's the issue from Section 3.2.2 Adding a page: They intentionally left out creating the About page (in Section 3.1.2) so as to teach me how to use TDD to guide me through the development process. ...
0
votes
1answer
41 views

Rails tutorial Chapter 9.3 Failing tests

I looked at the pass questions, but I couldn't find one to fix my problem. I get these failed tests. I even visited the users index page via the browser and I saw the sign in title. Failures: 1) ...
2
votes
1answer
45 views

Rails by Example (by Michael Hartl), Lesson 9.23 redirect will not work

I am following Lesson 9 covering redirects, yet the redirect just won't work! I followed the code to the letter to no avail. This is my location in the online tutorial Here is the current Github of ...
1
vote
1answer
56 views

Rails Tutorial Chap 5 Exercise 3 - What did the original full_title function do?

I am confused by Chap 5 Exercise 3 here that replaces the need for the full_title test helper spec/support/utilities.rb: def full_title(page_title) base_title = "Ruby on Rails Tutorial Sample App" ...
0
votes
2answers
83 views

Rails Tutorial RSpec Error (User_Pages_Spec ch. 9.1.1)

I'm working through Hartl's Rails Tutorial and am stuck on the initial test as part of 9.1.1. I've gone through my user_pages_spec.rb, users_controller.rb, routes.rb, edit.html.erb, and ...
0
votes
0answers
52 views

Ajax buttons in Rails app work locally, but not on Heroku

My scenario is very similar to this question (Buttons using Ajax don't work on Heroku), though I don't see a solution there. Summary: I've finished the Hartl Rails Tutorial, and I'm working to get ...
0
votes
1answer
62 views

Rails Tutorial 3 Chapter 9.1: Rspec tests failing when should be passing

I'm a rails noob and have been working through Michael Hartl's awesome Rails 3 tutorial with great success. So far all my tests have worked when they should have (per the book). However, I'm at the ...
0
votes
1answer
26 views

How do I use user_helper method globally throughout the app views?

I finished chapter 8 on Michael Hartl's Rails Tutorial, so I have the app set up to sign users up & sign in and out. What I am trying to do user a User Helper method inside the ...
0
votes
3answers
107 views

Ruby on Rails tutorial Chapter 11: Rspec tests fail on follower/following section

I'm working on Chapter 11 of Hartl's tutorial, trying to get the non-logged-in users in the Users controller visiting the followers and following page to pass. I'm running into an error where Rails ...
0
votes
1answer
136 views

Deploying Rails app to Heroku after previously taking Gemfile.lock out of repository

I'm working through the Rails 3.2 edition of Ruby on Rails Tutorial, and am right near the end of Chapter 5. Although it accepted my code a few days ago, Heroku no longer wants to take it when I push. ...
0
votes
1answer
55 views

Following artists by users - few questions

I've made my own app basing on the railstutorial.org website, and i'm now on chapter 11. Everything's fine, i've learned a lot from this tutorial and now i'm continuing work on my app and i'm actually ...
0
votes
1answer
51 views

'visit *_path' doesn't work while testing user model

I've searched around and this seems like a common enough issue, but nothing has worked for me. Here goes! Firstly, I'm working through the Hartl RoR tutorial. I'm towards the end of section 9 ...
3
votes
2answers
104 views

Ruby on Rails tutorial: RSpec test failing when refactoring with matcher

I'm working through Michael Hartl's Rails tutorial and can't get one Rspec test to pass when refactoring with a matcher. terminal output Failures: 1) Authentication login with invalid ...
0
votes
1answer
64 views

ruby on rails tutorial authorization

I'm working through the latest version of Michael Hartl's tutorial, and I have the following message: Failures: 1) UserPages edit with valid information Failure/Error: sign_in user ...
0
votes
1answer
25 views

Update Authorization (Ruby on Rails Tutorial)

Mike Hart's tutorial on adding authorization presented the below code (link to original code listing) . Why does the method update make a call to sign_in @user. This seems redundant to me as the ...
0
votes
1answer
43 views

Rails Tutorial Chapter 7 Failing Rspec

I'm going through the ROR tutorial and hit a roadblock on question 4. Failures: 1) UserPages signup with valid information after saving the user Failure/Error: it { should ...
0
votes
1answer
53 views

Rails Tutorial (Hartl) - Signup Confirmation extension

I just finished the Ruby on Rails Tutorial (Michael Hartl). At the end of the last chapter, he recommends some extensions to the sample app. One of these extensions is "Signup confirmation" that he ...
0
votes
0answers
56 views

Where are instance variables in a Rails helper module stored?

A tutorial I am following has in the subdirectory app/helpers the below SessionsHelper module which is used by many controllers and views. But where is the instance variable current_user stored when ...
0
votes
1answer
36 views

Modding Michael Hartl's railstutorial: Where to place rspec test?

I am playing around with Michael Hartl's railstutorial. I want to limit access to profile pages so only the owner can see his/hers profile. First task is to write the appropriate rspec test, but what ...
1
vote
1answer
166 views

expected css “title” with text "Ruby on Rails Tutorial Sample App |

I am working through the Ruby on Rails Tutorial by Michael Hartl and I keep getting a failing test that I cannot figure out. Here is a link to the code if you'd like code at github Here is the ...
0
votes
2answers
156 views

Michael Hartl's Ruby on rails Tutorial - Rspec test fail - undefined method `microposts'

So I'm at chapter 11 of Michael Hartl's (great) RoR tutorial. After finishing chapter 10, i decided i would add the micropost form the a user's profile page, so that you can post from there too, and ...
0
votes
1answer
158 views

rspec/factory issues from hartl chapter 9.2 - app functions fine, but tests are failing

All tests were working fine up until I made the last change to my rspec tests in section 9.2 of Hartl's tutorial. At that point all the related tests in my user_pages_spec.rb and ...
0
votes
0answers
30 views

Delete doesn't show on profile, but shows on feed

I am following MHartl's book for Rails 3.2 In chapter 10, he adds delete links for the microposts on the homepage and profile page My problem is that delete links show for homepage but not profile ...
0
votes
1answer
62 views

(SOLVED) Errors encountered in 10.3.3 of Michael Hartl's Rails Tutorial

I ran into the following errors when running my RSpec tests: Failures: 1) Authentication authorization as wrong user visiting Users#edit page Failure/Error: before { visit ...
0
votes
0answers
175 views

$ rails new demo_app command creates error for write permission on gemfile.lock

I am just starting the Ruby-on-Rails Tutorial. Completed all of Chapter 1, and first_app is up on heroku. Started Chapter 2 Demo_App and was surprised when I got an error dump when I ran... $ rails ...
2
votes
2answers
61 views

rails password authentication

First I am very very new to rails. so bear with any of my noob mistakes. Still trying to find the best sources for reliable information. Many things are a little outdated. I was following the Rails ...
0
votes
1answer
67 views

text field too narrow vertically with bootstrap/rails

I'm working through the rails tutorial and I noticed a little bit into the application that the height of my textarea is rendering smaller than it was earlier. I've looked through this thread here ...
-1
votes
2answers
39 views

How can I repurpose the application of Hartl's Ruby on Rails Tutorial?

I want to write a simple webapp that builds on top of the one developed in Michael Hartl's Ruby on Rails Tutorial. I tried to simply copy everything in another directory, but I found that the ...
1
vote
1answer
37 views

Railstutorial.org: Stuck in 9.2.2 (requiring the right user)

All of the tests at the end of chapter 9.2.1 (requiring signed-in users) passed for me. But my tests at the end of chapter 9.2.2 (requiring the right user) fail. In fact, there are 21 failures. My ...
1
vote
1answer
84 views

Named routes break RSpec Michael Hartl's Ruby on Rails Tutorial Chapter 5

I am working through Michael Hartl's Ruby on Rails utorial. Everything works great until named routes are tested in Chapter 5, and they all break Rspec. I have confirmed that they all work correctly ...
0
votes
1answer
108 views

Rails Tutorial Chapter 10 exercise 5 Using partials to eliminate duplication

I'm new in Rails and as many others I'm learning it with Hartl's Rails Tutorial. But on the exercise 5 chapter 10 (Using partials to eliminate duplication) I'm totally stucked and I would like go on ...

1 2 3 4 5 9