Is it good practice to store javascript/images/css in its own subdirectories within assets?

I've seen these kind of organizational layout in other's codes

vendor
  - assets
      - javascripts
              - sencha-touch
                  - sencha-touch.js
       - stylesheets
              - sencha-touch
                  - sencha-touch.css

But I was thinking doing this. Is it possible and most importantly recommended?

vendor
  - assets
     - sencha-touch
          - javascripts
               - sencha-touch.js
          - stylesheets
               - sencha-touch.css
link|improve this question

42% accept rate
feedback

1 Answer

up vote 6 down vote accepted

It is certainly possible; however, you have to add the following lines to your config/application.rb file:

config.assets.paths << Rails.root.join('vendor', 'assets', 'sencha-touch', 'stylesheets')
config.assets.paths << Rails.root.join('vendor', 'assets', 'sencha-touch', 'javascipts')

Of course, you could put them in their own directory, vendor/assets/sencha-touch/sencha-touch.js and vendor/assets/sencha-touch/sencha-touch.css, and then add just that path:

config.assets.paths << Rails.root.join('vendor', 'assets', 'sencha-touch')

Is it a best practice? Maybe, maybe not. Does it give your application any benefit? If so, I'd say go for it. However, if it were me, I would probably create a sencha-touch gem that has the assets in it (kind of like the jquery-rails gem) that had the assets in it in the proper paths; that way, you could upgrade the gem when you upgrade the JS lib and everything is quite nice.

Note that you can create a gem even if you don't publish it to RubyGems.org by using the :path or :git options in your Gemfile.

link|improve this answer
Hi Brandon, thanks :) I'll definitely check it out. Do you have any recommended readings for creating a gem for this purpose? – David C Jan 10 at 6:12
As long as your gem defines a Rails engine, Rails 3.1+ will automatically put the gem's assets directory in the pipeline; check out the jquery-rails source. – Brandon Tilley Jan 10 at 6:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.