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 874897
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T11:10:49+00:00 2026-05-15T11:10:49+00:00

I have a too many models and want to maitain separate validation and relationship

  • 0

I have a too many models and want to maitain separate validation and
relationship files for each model in rails. Is there any way i can maintain it
with rails?
Any specific advantage to do it?

  • 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-15T11:10:50+00:00Added an answer on May 15, 2026 at 11:10 am

    Your question is not clear. By “models” you mean database-backed models that use ActiveRecord, right?

    Usually validation is not a “file” but is a series of statements within the model’s file. Same for relationship declarations.

    You can split a model’s contents amongst any number of files. The technique varies depending on whether you want the other files to contain instance methods or class methods.

    Easiest is to have instance methods in other files. Eg

    # file foo.rb
    class Foo < ActiveRecord::Base
      include FooMethods
    
      # --- callbacks --- #
      before_create :record_signup # "before_create" is a "callback".
      # See http://api.rubyonrails.org/classes/ActiveRecord/Callbacks.html
      # note that the method could also be from a different class altogether:
      before_save      EncryptionWrapper.new
      # See section "Types of callbacks" in the api url referred to above
    
      # --- relationships --- #
      belongs_to :foobar
      has_many   :bars
    
      # --- Class Methods --- #
      def Foo.a_method_name(id)
        ...
      end
    end
    
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    # file foo_methods.rb
    
    module FooMethods
    
      def method1
        ...
      end
    
      def method2
       ...
      end
    
      private
    
      def record_signup # define the callback method
        self.signed_up_on = Date.today
      end
    end
    

    Offhand, I don’t how to put the callback override

    before_create

    in a different file than the model’s main class file. Wouldn’t be hard to figure out. But no matter how easy it would be to put in a different file, I would not recommend it from the code clarity point of view.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have long cycles of GC. from checks I saw there are too many
I have too many images to be download from net into iPhone? How can
I am new to Git and I seem to have one branch too many
I have a menubar(div) which houses bookmarks and when too many bookmarks are inserted
I have the problem that my view controller class has too many delegates and
Sorry I'm asking too many questions in a row. I have a list of
I hope this question isn't too dumb. We have many websites internally that need
I have a class Cars and class Models. Car has many properties such as
I have a simple rails app with models project and phase. A project has
I have the following models associations which I want to use in order to

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.