This was asked in another question, but none of the solutions appear to work for me in 3.1rc1.
I\'m trying to use the new assets stuff in rails 3.1 - I have the file
Have you tried using the rails-asset-jqueryui gem? It vendors jquery-ui and the standard themes (currently v1.8.16) and makes them available via the asset pipeline. The following example calls for the Smoothness theme.
....
gem 'rails-asset-jqueryui'
...
...
//= require jqueryui
...
...
= require smoothness
...