1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

[Sass] Fix manually enabling Sass::Plugin::Rack under Rails.

This commit is contained in:
Nathan Weizenbaum 2010-05-10 19:48:46 -07:00
parent b0b47d0d93
commit 7d538d27e5
2 changed files with 5 additions and 2 deletions

View file

@ -5,6 +5,9 @@
## 3.0.1 (Unreleased)
* Make sure manually importing the Sass Rack plugin still works with Rails,
even though it's not necessary now.
* Allow identifiers to begin with multiple underscores.
## 3.0.0

View file

@ -1,5 +1,3 @@
require 'sass/plugin'
module Sass
module Plugin
# Rack middleware for compiling Sass code.
@ -45,3 +43,5 @@ module Sass
end
end
end
require 'sass/plugin'