I want to use the jquery-ui-rails gem in my rails project, but I'm using SASS imports for my CSS. How should I import the CSS for jQuery UI?
The css.erb files are under the Ruby installation path hierarchy and I guess the asset pipeline magic is making them available when I serve the app. I don't see them anywhere in my project path.
I understood that I should use the SASS @import
statements exclusively instead of mixing them with Sprockets *= require
directives.
Should I use the jquery-ui-sass-rails gem, or is that redundant since the CSS files are already available in the jquery-ui-rails gem?
I'm using Ruby 2.0.0, Rails 4.0.3. I'm developing on Windows 8.1 and hosting on Heroku.