guidelines for where to put classes in Rails apps that don't fit anywhere

前端 未结 5 1653
忘掉有多难
忘掉有多难 2020-12-24 01:28

I\'m wondering if there are any best practices about where to put non-standard Ruby files in Rails apps, those that don\'t fit in any of the default directories (contr

相关标签:
5条回答
  • 2020-12-24 01:43

    If you're interested, I also wrote a follow-up article about this a bit later summing up what I found: http://blog.lunarlogic.io/2013/declutter-lib-directory/

    0 讨论(0)
  • 2020-12-24 01:47

    I place any model classes (like STI subclasses) in apps/models. I place my other classes in lib, as it seems to be the best place to put them. It's easy for me to know where to look. It's also easier for me to group my tests since my model classes are all in one place.

    Convention-wise I'm loathe to put helper classes in app/models. If they're presenter classes they belong in the app/helpers. If they're not then lib seems to be the best place for them.

    0 讨论(0)
  • 2020-12-24 01:48

    You touch on a number of different use cases, and I think that this part is the closest to the "right" answer:

    I've got quite a lot of these now, some of them are added to lib which ends up as a pile of random classes and modules, some sneak into app/models. I'd like to organize this somehow, but I don't know where to start.

    That's pretty much right on in my book. The one thing you don't mention is extracting various pieces into separate gems. Classes that talk to external services are excellent candidates for extraction, as are strategy classes if they're sufficiently general. These can be private, since running your own gem server isn't hard, and you can then obviously reuse them across ROR apps.

    Last and most concretely, resque jobs I stuff into lib/jobs.

    My rule of thumb is if it's a model of some kind, it goes into app/models. If not, it probably belongs in lib or some appropriately named subdirectory thereof, e.g. lib/jobs, lib/extensions, lib/external, or the like.

    0 讨论(0)
  • 2020-12-24 01:50

    Good question - i don't have a concrete answer for you

    but I recommend checking out this post - http://blog.codeclimate.com/blog/2012/02/07/what-code-goes-in-the-lib-directory/ - be sure to read through all the comments

    on a current project i have a ton of non-ActiveRecord objects under app/models, it works but not ideal i put 're-useable' non application specific code under lib

    other alternatives I have tried on side projects (say we have a bunch of command objects) rails is a pain when it comes to namespaces under app, it loads everything up into the same namespace by default

    app/
      commands/
        products/create_command.rb         # Products::CreateCommand
        products/update_price_command.rb   # Products::UpdatePriceCommand
    

    alternate, everything besides rails under src or an app_name directory

    app/
      src/
        commands/
          create_product.rb         # Commands::CreateProduct
          update_product_price.rb   # Commands::UpdateProductPrice
    

    I haven't come across a good solution for this, ideally the 2nd one is better, but would be nice to not have the additional directory under app, that way you open app and see controllers, commands, models etc...

    0 讨论(0)
  • 2020-12-24 02:01

    Often my classes find their way into lib in subdirectories where modules with the same name as the subdirectory is responsible for including them. (Rails is very touchy about filenames and classnames when it comes to the autoloader.)

    Another option is to encapsulate each module into its own gem and then refer to the gem via your Gemfile. This permits code sharing across projects.

    0 讨论(0)
提交回复
热议问题