From 9e3fd546d9e1e521ab639f64776d11747d692a3f Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Fri, 10 Dec 2010 09:41:10 -0800 Subject: [PATCH] Add donation details to the CLI. --- lib/compass/commands/help.rb | 4 ++++ lib/compass/commands/print_version.rb | 2 ++ 2 files changed, 6 insertions(+) diff --git a/lib/compass/commands/help.rb b/lib/compass/commands/help.rb index 1fc69760..4501921c 100644 --- a/lib/compass/commands/help.rb +++ b/lib/compass/commands/help.rb @@ -9,6 +9,10 @@ Description: build and maintain your stylesheets and makes it easy for you to use stylesheet libraries provided by others. +Donating: + Compass is charityware. If you find it useful please make + a tax deductable donation: http://umdf.org/compass + To get help on a particular command please specify the command. } diff --git a/lib/compass/commands/print_version.rb b/lib/compass/commands/print_version.rb index 1b198734..bc6fa059 100644 --- a/lib/compass/commands/print_version.rb +++ b/lib/compass/commands/print_version.rb @@ -83,6 +83,8 @@ Options: lines << "Compass #{::Compass.version[:string]}" lines << "Copyright (c) 2008-#{Time.now.year} Chris Eppstein" lines << "Released under the MIT License." + lines << "Compass is charityware." + lines << "Please make a tax deductable donation: http://umdf.org/compass" puts lines.join("\n") end end