### Running Tests for sass-rails (Shell) Source: https://github.com/rails/sass-rails/blob/master/README.md This snippet provides the shell commands required to set up the development environment and run the test suite for the `sass-rails` project. It involves installing dependencies with Bundler and executing tests via Rake. ```shell $ bundle install $ bundle exec rake test ``` -------------------------------- ### Configuring Sass Options in Rails (Ruby) Source: https://github.com/rails/sass-rails/blob/master/README.md This example demonstrates how to configure Sass-specific options within your Rails application's configuration block. It shows how to set the preferred Sass syntax, disable line comments, and turn off caching for Sass compilation. ```ruby MyProject::Application.configure do config.sass.preferred_syntax = :sass config.sass.line_comments = false config.sass.cache = false end ``` -------------------------------- ### Adding sass-rails Gem to Gemfile (Ruby) Source: https://github.com/rails/sass-rails/blob/master/README.md This snippet shows how to add the `sass-rails` gem to your Rails project's Gemfile. This is necessary for integrating Sass, especially when upgrading to Rails 3.1 or setting up new projects. ```ruby gem 'sass-rails' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.