diff --git a/doc-src/SASS_CHANGELOG.md b/doc-src/SASS_CHANGELOG.md index 30ed2c24..a942c481 100644 --- a/doc-src/SASS_CHANGELOG.md +++ b/doc-src/SASS_CHANGELOG.md @@ -10,6 +10,9 @@ and is forwards-compatible with alpha-channel colors (to be introduced in Sass 2.4). +* Added a missing require in Sass that caused crashes + when it was being run standalone. + ## [2.2.14](http://github.com/nex3/haml/commit/2.2.14) * All Sass functions now raise explicit errors if their inputs diff --git a/lib/sass/files.rb b/lib/sass/files.rb index b77876f9..182a9384 100644 --- a/lib/sass/files.rb +++ b/lib/sass/files.rb @@ -1,5 +1,6 @@ require 'digest/sha1' require 'pathname' +require 'fileutils' module Sass # This module contains various bits of functionality