diff --git a/doc-src/HAML_CHANGELOG.md b/doc-src/HAML_CHANGELOG.md index 964c636d..6f534965 100644 --- a/doc-src/HAML_CHANGELOG.md +++ b/doc-src/HAML_CHANGELOG.md @@ -5,8 +5,20 @@ ## 3.0.1 (Unreleased) -* Turn the {file:HAML_REFERENCE.md#ugly-option `:ugly` option} on by default - in the testing environment in Rails to help tests run faster. +### Installation in Rails + +`haml --rails` is no longer necessary for installing Haml in Rails. +Now all you need to do is add `gem "haml"` to the Gemfile for Rails 3, +or add `config.gem "haml"` to `config/environment.rb` for previous versions. + +`haml --rails` will still work, +but it has been deprecated and will print an error message. +It will not work in the next version of Haml. + +### Rails Test Speed + +The {file:HAML_REFERENCE.md#ugly-option `:ugly` option} is now on by default +in the testing environment in Rails to help tests run faster. ## 3.0.0 {#3-0-0} diff --git a/doc-src/SASS_CHANGELOG.md b/doc-src/SASS_CHANGELOG.md index fc63fc47..e0218138 100644 --- a/doc-src/SASS_CHANGELOG.md +++ b/doc-src/SASS_CHANGELOG.md @@ -5,6 +5,16 @@ ## 3.0.1 (Unreleased) +### Installation in Rails + +`haml --rails` is no longer necessary for installing Sass in Rails. +Now all you need to do is add `gem "haml"` to the Gemfile for Rails 3, +or add `config.gem "haml"` to `config/environment.rb` for previous versions. + +`haml --rails` will still work, +but it has been deprecated and will print an error message. +It will not work in the next version of Sass. + ### Rails 3 Beta Integration * Make sure manually importing the Sass Rack plugin still works with Rails,