if ENV['RUN_CODE_RUN'] # We need to checkout edge haml for the run>code>run test environment. if File.directory?("haml") Dir.chdir("haml") do sh "git", "pull" end else sh "git", "clone", "git://github.com/nex3/haml.git" end $LOAD_PATH.unshift "haml/lib" end require 'rubygems' require 'rake' require 'lib/compass' # ----- Default: Testing ------ task :default => :run_tests require 'rake/testtask' require 'fileutils' Rake::TestTask.new :run_tests do |t| t.libs << 'lib' t.libs << 'haml/lib' if ENV["RUN_CODE_RUN"] test_files = FileList['test/**/*_test.rb'] test_files.exclude('test/rails/*', 'test/haml/*') t.test_files = test_files t.verbose = true end Rake::Task[:test].send(:add_comment, < haml_file) puts " haml #{File.basename(basename)}" output = open(basename,'w') output.write(engine.render) output.close end Dir.chdir example do Compass::Exec::Compass.new(["--force"]).run! end end end namespace :git do desc "Perform normal operations required for pushing to github." task :push => [:manifest, :gem] do sh "git", "add", "Manifest", "compass.gemspec", "VERSION" sh "git", "commit", "-m", "Updated Manifest and gemspec." sh "git", "push", "origin", "master" end task :clean do sh "git", "clean", "-fdx" end end task :manifest => :"git:clean"