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

  • Home
  • SEARCH
  • 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 9183705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T18:52:13+00:00 2026-06-17T18:52:13+00:00

We’re currently developing a custom cms engine for ROR 3.2. In this process several

  • 0

We’re currently developing a custom cms engine for ROR 3.2. In this process several class types originated that we want to be first class citizens in our rails application, meaning they should reside under the app folder of the application and it’s plugins.

Currently we’re having the following types:

  • DataSource
  • DataType
  • View

I created multible directories under the app folder to hold these:

  • app/data_source
  • app/data_type
  • app/view

More types will follow and I’m a little worried with polluting the app folder with so many directories. Thus i want to move them into a subdirectory/module that holds all Types defined by the cms.

All classes should be inside a MyCms namespace and the directory layout should look like this:

  • app/my_cms/data_source
  • app/my_cms/data_type
  • app/my_cms/view

But now I’m having trouble with autoloading because rails default autoloading would excpect the paths to be like this:

  • app/data_source/my_cms
  • app/data_type/my_cms
  • app/view/my_cms

But this way I would not have grouped all object types in one directory.

What I want is somewhat similar to view grouping of isolated engines. In Devise for example, all views are grouped in the views/devise subdirectory.

Any idea how this could be achieved without to much custom implementation?

  • 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-06-17T18:52:14+00:00Added an answer on June 17, 2026 at 6:52 pm

    You would have to add app/my_cms to your autoload path within config/application.rb:

    config.autoload_paths << "#{config.root}/app/my_cms"
    

    provided that your classes are defined without a namespace like this:

    class DataSource
      ...
    end
    

    If you namespace them like this in app/my_cms/data_source.rb:

    class MyCms::DataSource
      ...
    end
    

    you might add the app folder to the load path:

    config.autoload_paths << "#{config.root}/app"
    

    Alternatively, you can do it manually but you lose the reloading for those classes in Rails development:

    in app/my_cms.rb (and with autoloading for app in place):

    module MyCms
      autoload :AnotherDataSource, 'my_cms/data_source/one_data_source'
      autoload :AnotherDataSource, 'my_cms/data_source/another_data_source'
    
      ...
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I want use html5's new tag to play a wav file (currently only supported
I have a French site that I want to parse, but am running into
I am doing a simple coin flipping experiment for class that involves flipping a
I know there's a lot of other questions out there that deal with this
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
For some reason, after submitting a string like this Jack’s Spindle from a text

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.