From b348fd7d3df929c74924f34f1025c12e27b69d44 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Thu, 9 Jul 2009 12:48:36 -0700 Subject: [PATCH] Added instructions for how to build the examples. --- Rakefile | 1 + examples/README.markdown | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 examples/README.markdown diff --git a/Rakefile b/Rakefile index 22457aac..ac940261 100644 --- a/Rakefile +++ b/Rakefile @@ -102,6 +102,7 @@ task :examples do require 'lib/compass' require 'lib/compass/exec' FileList['examples/*'].each do |example| + next unless File.directory?(example) puts "\nCompiling #{example}" puts "=" * "Compiling #{example}".length # compile any haml templates to html diff --git a/examples/README.markdown b/examples/README.markdown new file mode 100644 index 00000000..b00d5709 --- /dev/null +++ b/examples/README.markdown @@ -0,0 +1,4 @@ +To build the examples: + +1. You can run the compass command line from any particular compass example project +2. You can compile them all by running `rake examples` at the top of the project directory. \ No newline at end of file