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

Mention haml --rails deprecation in the changelog.

This commit is contained in:
Nathan Weizenbaum 2010-05-10 20:35:08 -07:00
parent 69e117188b
commit 96e959c5d4
2 changed files with 24 additions and 2 deletions

View file

@ -5,8 +5,20 @@
## 3.0.1 (Unreleased) ## 3.0.1 (Unreleased)
* Turn the {file:HAML_REFERENCE.md#ugly-option `:ugly` option} on by default ### Installation in Rails
in the testing environment in Rails to help tests run faster.
`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
{#3-0-0} {#3-0-0}

View file

@ -5,6 +5,16 @@
## 3.0.1 (Unreleased) ## 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 ### Rails 3 Beta Integration
* Make sure manually importing the Sass Rack plugin still works with Rails, * Make sure manually importing the Sass Rack plugin still works with Rails,