Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3616234
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T22:28:28+00:00 2026-05-18T22:28:28+00:00

I’m new to rails and I’m stuck with a problem I can’t seem to

  • 0

I’m new to rails and I’m stuck with a problem I can’t seem to understand. I’ll explain my scenario:

I have a User model which was created using Devise. I’ve created another model called Skill (math:integer science:integer) which references user:

- skill belongs_to :user 
- user has_one :skill

I’ve modified the routes file so that skill has nested routes within user:

# Users (Devise)
devise_for :users, :path_names => { :sign_up => "register"}

# Skills
resources :users do
  resource :skills
end

I’ve created a SkillsController with the actions edit, and update. The code is the following:

class SkillsController < ApplicationController

  def edit
    @user = User.find(params[:user_id])
    @skill = get_skill(@user)
  end

  def update
    @skill = Skill.find(params[:id])

    if (@skill.update_attributes(params[:skill]))
      redirect_to(root_url, {:notice => 'Your skills were successfully updated.'})
    else
      render :action => "edit"
    end
  end

  # the user might have been created without skills, so it will be nil on the first usage
  # ToDo: extend Devise UserController to create an empty skill on the create action
  def get_skill(user)
    if !(user.skill)
      user.skill = Skill.new
      user.save
    end
    user.skill
  end
end

Finnally, my views/skills/edit.html.erb view looks like the following:

<%= form_for(@skill) do |skill_form| %>

    <div>
      <%= skill_form.label :math %><br />
      <%= skill_form.text_field :math %>
    </div>

    <div class="actions">
      <%= skill_form.submit 'Save' %>
    </div>

<% end %>

Whenever I try to go to the skills edit form (http://localhost:3000/users/1/skills/edit), the following error is thrown:

ActionController::RoutingError in Skills#edit 

No route matches {:controller=>"skills"}

Extracted source (around line #1):

1: <%= form_for(@skill) do |skill_form| %>
2: 
3:     <div>

I know I must be doing something wrong… just can’t figure out what 😐

Thanks in advance,
Bruno

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T22:28:28+00:00Added an answer on May 18, 2026 at 10:28 pm

    Your get_skill method should be creating a skill like this instead:

    def get_skill
      user.skill || user.create_skill
    end
    

    The form_for for this because you’ve got skills nested inside of users in the routes should be this:

    <%= form_for [@user, @skill] do |f| %>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to using the Perl treebuilder module for HTML parsing and can't figure
I have a jquery bug and I've been looking for hours now, I can't
I am trying to understand how to use SyndicationItem to display feed which is
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have an autohotkey script which looks up a word in a bilingual dictionary
I have an array which has BIG numbers and small numbers in it. I
I have a text area in my form which accepts all possible characters from
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.