Giter Club home page Giter Club logo

sass-rails's Introduction

Official Ruby-on-Rails Integration with Sass

This gem provides official integration for ruby on rails projects with the Sass stylesheet language.

Installing

Since rails 3.1, new rails projects will be already configured to use Sass. If you are upgrading to rails 3.1 you will need to add the following to your Gemfile:

gem 'sass-rails'

Configuration

To configure Sass via rails set use config.sass in your application and/or environment files to set configuration properties that will be passed to Sass.

Example

MyProject::Application.configure do
  config.sass.line_comments = false
  config.sass.syntax = :nested
end

Important Note

Sprockets provides some directives that are placed inside of comments called require, require_tree, and require_self. DO NOT USE THEM IN YOUR SASS/SCSS FILES. They are very primitive and do not work well with Sass files. Instead, use Sass's native @import directive which sass-rails has customized to integrate with the conventions of your rails projects.

Options

The list of supported options can be found on the Sass Website with the following caveats:

  1. Output compression is now controlled via the config.assets.compress boolean option instead of through the :style option.
  2. :never_update - This option is not supported. Instead set config.assets.enabled = false
  3. :always_update - This option is not supported. Sprockets uses a controller to access stylesheets in development mode instead of a full scan for changed files.
  4. :always_check - This option is not supported. Sprockets always checks in development.
  5. :syntax - This is determined by the file's extensions.
  6. :filename - This is determined by the file's name.
  7. :line - This is provided by the template handler.

Features

  • Glob Imports. When in rails, there is a special import syntax that allows you to glob imports relative to the folder of the stylesheet that is doing the importing. E.g. @import "mixins/*" will import all the files in the mixins folder and @import "mixins/**/*" will import all the files in the mixins tree. Any valid ruby glob may be used. The imports are sorted alphabetically. NOTE: It is recommended that you only use this when importing pure library files (containing mixins and variables) because it is difficult to control the cascade ordering for imports that contain styles using this approach.

  • Asset Helpers. When using the asset pipeline, paths to assets must be rewritten. When referencing assets use the following asset helpers (underscored in Ruby, hyphenated in Sass):

    • asset-path($relative-asset-path, $asset-class) - Returns a string to the asset. For example: asset-path("rails.png", image) becomes "/assets/rails.png"
    • asset-url($relative-asset-path, $asset-class) - Returns url reference to the asset. For example: asset-url("rails.png", image) becomes url(/assets/rails.png)
    • As a convenience, for each of the following asset classes there are corresponding -path and -url helpers: image, font, video, audio, javascript, stylesheet. For example: image-url("rails.png") becomes url(/assets/rails.png) and image-path("rails.png") becomes "/assets/rails.png".
    • asset-data-url($relative-asset-path) - Returns url reference to the Base64-encoded asset at the specified path. For example: asset-data-url("rails.png") becomes url(data:image/png;base64,iVBORw0K...)

Running Tests

$ bundle install
$ bundle exec rake test

If you need to test against local gems, use Bundler's gem :path option in the Gemfile and also edit test/support/test_helper.rb and tell the tests where the gem is checked out.

sass-rails's People

Contributors

chriseppstein avatar spastorino avatar jonleighton avatar josevalim avatar joenoon avatar dhh avatar grk avatar josh avatar jsmestad avatar wycats avatar masterkain avatar dane avatar fredwu avatar lardawge avatar nragaz avatar pwnall avatar fxn avatar

Stargazers

 avatar

Watchers

 avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.