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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:14:52+00:00 2026-05-17T06:14:52+00:00

I have a model that requires loading external data from an auxiliary source. A

  • 0

I have a model that requires loading external data from an auxiliary source. A number of web services exist that my model can fetch the data from (swappable), but I don’t want to create code that will make it difficult to change services (costs significantly differ based on variable and fixed usage and it is likely changing will be required).

I would like to create a driver to perform the interaction (and then create further custom drivers if the service requires switching). Unfortunately, due to the tight coupling of the driver and model, it does not makes sense to extract the code into a plugin or gem. I have extracted all the code into a module (see example), and currently have the code declared above my model.

module Synchronize
  def refresh
    self.attributes = ...
    self.save
  end
end

class Data < ActiveRecord::Base
  include Synchronize
end

Does Rails (3.0.0) have a convention for storing modules tightly coupled with models? Should I be using a plugin to do this? Is this associated with the ‘app/helpers’ directory? If not, where is the most appropriate place to store the code? Thanks!

  • 1 1 Answer
  • 3 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-17T06:14:52+00:00Added an answer on May 17, 2026 at 6:14 am

    You are correct that if the module is tightly coupled to that specific model then it’s not a good candidate for a gem/plugin.

    app/helpers/ is for view helper methods and shouldn’t contain modules that are solely for mixing into models.

    One place you could put the module is within lib/. This is for code that doesn’t really fit anywhere within app/ and is often the initial home of loosely coupled code before it is moved to a plugin (but that isn’t a hard and fast rule). However, since your module is tightly coupled to your model, lib/ may not be the best place for it.

    I know that 37signals (and others) use the concept of ‘concerns’ as a way of keeping related model code organised in modules. This is implemented by creating app/concerns/ and putting the modules in there. That directory is then added to the app’s load path in config/application.rb (config/environment.rb for Rails 2) with:

    config.load_paths += %W(#{Rails.root}/app/concerns)
    

    The module can then be mixed into the model as normal.

    Here’s the original blog post about this by Jamis Buck – http://weblog.jamisbuck.org/2007/1/17/concerns-in-activerecord

    Another variation of this which I personally prefer, although it doesn’t involve modules, uses this plugin:
    http://github.com/jakehow/concerned_with

    Hope that helps.

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

Sidebar

Related Questions

I have a restfull webservice that requires loading trained model files and to create
I have a model that requires quite a few BooleanFields, they could be considered
I have a user model that requires the user to change their password every
I have a model that requires a valid format of a URL. class Event
Hi i have found a lot of examples about loading data from a db
I have a Silverlight Windows Phone 7 app that pulls data from a public
I have a standard active record model with an attributes that is required: class
I have a model that looks like this: Performance - Location - Event -
I have a model Articles that has_many Assets which is a polymorphic model that
I have a model that contains an Address property and Latitude / Longitude properties.

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.