Tests are more useful if you actually run them.

This commit is contained in:
Chris Eppstein 2010-08-05 22:11:39 -07:00
parent 20b5f88b64
commit 973a568c1d
4 changed files with 6 additions and 4 deletions

View File

@ -2,4 +2,4 @@
:major: 0
:minor: 10
:patch: 4
:build: pre.1
:build: pre.2

View File

@ -7,8 +7,10 @@ layout: article
COMPASS CHANGELOG
=================
0.10.4.pre.1 (8/5/2010)
0.10.4.pre.2 (8/5/2010)
-----------------------
*Note:* 0.10.4.pre.1 had a bug and was yanked.
* [Extensions] Make it easier to create manifest files.
* [Rails] Don't install configuration files when installing extensions.

View File

@ -72,7 +72,7 @@ Options:
# all commands must implement perform
def perform
installer.init
installer.run(:skip_finalization => true, :skip_preparation => true)
installer.run(:skip_finalization => true, :skip_preparation => !is_project_creation?)
UpdateProject.new(working_path, options).perform if installer.compilation_required?
installer.finalize(options.merge(:create => is_project_creation?))
end

View File

@ -51,7 +51,7 @@ module Compass
type :javascript, :plural => :javascripts, :extensions => %w(js)
type :font, :plural => :fonts, :extensions => %w(otf woff ttf)
type :html, :plural => :html, :extensions => %w(html haml)
type :file :plural => :files
type :file, :plural => :files
type :directory, :plural => :directories
def discover(type)