Version is now 0.4.0.

This release is a major rewrite of the compass command line utility. It
is much more flexible and will better support other project types with
varying project structures.

There is a new configuration file format that allows you to specify
the sass, css, image and javascript locations for your project when
using compass in a stand-alone (or unsupported project) format.

Compass frameworks and plugins must now provide a manifest that
specifies what files and file types exist in the project template. This
paves the way for other types of templates as the same installation
framework that creates a project can now be used to install other
things.

The compass command line has better help text and more informative
output in general.
This commit is contained in:
Chris Eppstein 2009-02-08 03:30:09 -08:00
parent 10e6808648
commit d0a9e0bcab
3 changed files with 18 additions and 7 deletions

View File

@ -69,6 +69,7 @@ frameworks/blueprint/stylesheets/blueprint/modules/_typography.sass
frameworks/blueprint/stylesheets/blueprint/modules/_utilities.sass
frameworks/blueprint/templates/project/grid.png
frameworks/blueprint/templates/project/ie.sass
frameworks/blueprint/templates/project/manifest.rb
frameworks/blueprint/templates/project/print.sass
frameworks/blueprint/templates/project/screen.sass
frameworks/blueprint.rb
@ -97,8 +98,8 @@ frameworks/compass/stylesheets/compass/utilities/lists/_inline_list.sass
frameworks/compass/stylesheets/compass/utilities/tables/_alternating_rows_and_columns.sass
frameworks/compass/stylesheets/compass/utilities/text/_nowrap.sass
frameworks/compass/stylesheets/compass/utilities/text/_replacement.sass
frameworks/compass/templates/project/grid.png
frameworks/compass/templates/project/ie.sass
frameworks/compass/templates/project/manifest.rb
frameworks/compass/templates/project/print.sass
frameworks/compass/templates/project/screen.sass
frameworks/compass.rb
@ -107,19 +108,29 @@ frameworks/yui/stylesheets/_yui.sass
frameworks/yui/stylesheets/yui/modules/_base.sass
frameworks/yui/stylesheets/yui/modules/_fonts.sass
frameworks/yui/stylesheets/yui/modules/_grids.sass
frameworks/yui/templates/project/manifest.rb
frameworks/yui/templates/project/screen.sass
frameworks/yui.rb
lib/compass/actions.rb
lib/compass/commands/base.rb
lib/compass/commands/create_project.rb
lib/compass/commands/install_rails.rb
lib/compass/commands/list_frameworks.rb
lib/compass/commands/print_version.rb
lib/compass/commands/project_base.rb
lib/compass/commands/update_project.rb
lib/compass/commands/watch_project.rb
lib/compass/compiler.rb
lib/compass/configuration.rb
lib/compass/core_ext.rb
lib/compass/errors.rb
lib/compass/exec.rb
lib/compass/frameworks.rb
lib/compass/installers/base.rb
lib/compass/installers/manifest.rb
lib/compass/installers/rails.rb
lib/compass/installers/stand_alone.rb
lib/compass/installers.rb
lib/compass/logger.rb
lib/compass/merb.rb
lib/compass/test_case.rb
lib/compass/validate/COPYRIGHT.html

View File

@ -1 +1 @@
0.3.9
0.4.0

File diff suppressed because one or more lines are too long