Changelog for rc.0 and a blog post.
This commit is contained in:
parent
c3b0f0117a
commit
d642ae7b74
@ -14,13 +14,23 @@ The Documentation for the [latest stable release](http://compass-style.org/docs/
|
|||||||
|
|
||||||
The Documentation for the [latest preview release](http://beta.compass-style.org/)
|
The Documentation for the [latest preview release](http://beta.compass-style.org/)
|
||||||
|
|
||||||
0.12.alpha.3 (UNRELEASED)
|
0.12.rc.0 (UNRELEASED)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
### Stylesheet Changes
|
||||||
|
|
||||||
* Removed -ms prefix from box-sizing
|
* Removed -ms prefix from box-sizing
|
||||||
* Added sprite_names sass function
|
* Added sprite_names sass function
|
||||||
* Added -ms prefix to transitions
|
* Added -ms prefix to transitions
|
||||||
* Added support for `--debug-info` and `--no-debug-info` to compass compile
|
|
||||||
|
### Command Line
|
||||||
|
|
||||||
|
* Added support for `--debug-info` and `--no-debug-info` to the compass compile command
|
||||||
|
|
||||||
|
### Rails Integration
|
||||||
|
|
||||||
|
Rails projects must now use the [`compass-rails`](https://github.com/compass/compass-rails)
|
||||||
|
gem to integrate with compass. Please read the [README](https://github.com/Compass/compass-rails/blob/master/README.md) for upgrade instructions. More information in this [blog post](/blog/2012/01/29/compass-and-rails-integration/).
|
||||||
|
|
||||||
0.12.alpha.3 (12/23/2011)
|
0.12.alpha.3 (12/23/2011)
|
||||||
-------------------------
|
-------------------------
|
||||||
|
@ -0,0 +1,49 @@
|
|||||||
|
---
|
||||||
|
title: "Compass/Rails Integration in v0.12"
|
||||||
|
description: "Starting in Compass v0.12 compass's rails integration is
|
||||||
|
done via a new project called compass-rails."
|
||||||
|
author: chris
|
||||||
|
---
|
||||||
|
|
||||||
|
The Compass v0.12 release is way behind schedule but it's finally getting
|
||||||
|
very close to release. The main goal of the v0.12 release has been to add
|
||||||
|
support for the rails asset pipeline and we hope that you'll agree that this
|
||||||
|
release achieves the very best integration with rails that compass has
|
||||||
|
ever provided.
|
||||||
|
|
||||||
|
In v0.12, we've create a new gem called `compass-rails` to provide full
|
||||||
|
support for rails 2.3 and greater. Let me tell you, this was no small
|
||||||
|
feat. 2.3 lacks Railtie support and 3.1 introduced the asset pipeline.
|
||||||
|
Backflips were performed; blood, sweat, and tears were shed; Monkeys
|
||||||
|
were patched and Ducks were punched.
|
||||||
|
|
||||||
|
The compass command line tool will now be aware of and compass
|
||||||
|
configuration settings you've made in your rails configuration files
|
||||||
|
and/or in the compass configuration file. You can use the approach that
|
||||||
|
best suites your workflow.
|
||||||
|
|
||||||
|
While the asset pipeline is convenient, large applications with lots of
|
||||||
|
stylesheets and many imports can become sluggish in development mode. To
|
||||||
|
make things snappier, you can now run the compass watcher in a separate
|
||||||
|
terminal to begin compilation as soon as you save. In combination with
|
||||||
|
tools like [live-reload](https://github.com/mockko/livereload), you may
|
||||||
|
not even need to reload your webpage to see the result in your browser.
|
||||||
|
|
||||||
|
Compass extensions and their starter files can be added to your rails
|
||||||
|
project following the extensions' existing installation instructions.
|
||||||
|
No special consideration is needed to support rails except to note
|
||||||
|
that the extension gem should be listed in the `:assets` group of your
|
||||||
|
Gemfile and you might need to use `bundle exec` to launch the compass
|
||||||
|
command line tool.
|
||||||
|
|
||||||
|
Having a dedicated gem for integration provides a number of benefits.
|
||||||
|
First, it means that we can release rails integration fixes on a
|
||||||
|
separate release schedule from the main compass library. Second, it
|
||||||
|
solves a chicken & egg problem we had where the command-line tools
|
||||||
|
didn't know whether they were dealing with a rails project until it was
|
||||||
|
too late. Finally, it allowed us to clean up some of the Compass
|
||||||
|
internals. To be clear, this gem doesn't mean that Rails support is
|
||||||
|
deprecated or a second class citizen in any way.
|
||||||
|
|
||||||
|
Huge thanks go to [Scott Davis](https://github.com/scottdavis) for his
|
||||||
|
hard work on the compass-rails gem.
|
Loading…
Reference in New Issue
Block a user