From 96e959c5d4a8f6ff4a4107d638ceb7568a7b4abe Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Mon, 10 May 2010 20:35:08 -0700 Subject: [PATCH] Mention haml --rails deprecation in the changelog. --- doc-src/HAML_CHANGELOG.md | 16 ++++++++++++++-- doc-src/SASS_CHANGELOG.md | 10 ++++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) 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,