From 3bd06d3033f0295fda905c6b0c2e584652c61a41 Mon Sep 17 00:00:00 2001 From: Chris Eppstein Date: Tue, 31 Aug 2010 22:35:08 -0700 Subject: [PATCH] better description of the --using option. --- lib/compass/commands/create_project.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/compass/commands/create_project.rb b/lib/compass/commands/create_project.rb index ebebd507..0a5546a5 100644 --- a/lib/compass/commands/create_project.rb +++ b/lib/compass/commands/create_project.rb @@ -33,7 +33,7 @@ module Compass }.split("\n").map{|l| l.gsub(/^ */,'')}.join("\n").strip end - opts.on("--using FRAMEWORK", "Framework to use when creating the project.") do |framework| + opts.on("--using PATTERN", "A framework's pattern to use when creating the project.") do |framework| framework = framework.split('/', 2) self.options[:framework] = framework[0] self.options[:pattern] = framework[1]