[Command Line] Access the Sass Repl (sass -i) with the compass environment loaded.

This commit is contained in:
Chris Eppstein 2009-11-14 10:11:19 -08:00
parent 22cdcf2cb5
commit 46ccb5b6e1
2 changed files with 62 additions and 1 deletions

View File

@ -6,6 +6,6 @@ require 'compass/commands/registry'
%w(base generate_grid_background help list_frameworks project_base
update_project watch_project create_project installer_command
print_version project_stats stamp_pattern validate_project
write_configuration).each do |lib|
write_configuration interactive).each do |lib|
require "compass/commands/#{lib}"
end

View File

@ -0,0 +1,61 @@
require 'compass/commands/project_base'
require 'compass/commands/update_project'
module Compass
module Commands
module InteractiveOptionsParser
def set_options(opts)
opts.banner = %Q{
Usage: compass interactive [path/to/project] [options]
Description:
Interactively evaluate SassScript
Options:
}.strip.split("\n").map{|l| l.gsub(/^ {0,10}/,'')}.join("\n")
super
end
end
class Interactive < ProjectBase
register :interactive
def initialize(working_path, options)
super
end
def perform
require 'sass/repl'
Sass::Repl.new.run
end
class << self
def option_parser(arguments)
parser = Compass::Exec::CommandOptionParser.new(arguments)
parser.extend(Compass::Exec::GlobalOptionsParser)
parser.extend(Compass::Exec::ProjectOptionsParser)
parser.extend(InteractiveOptionsParser)
end
def usage
option_parser([]).to_s
end
def description(command)
"Interactively evaluate SassScript"
end
def parse!(arguments)
parser = option_parser(arguments)
parser.parse!
parser.options
end
end
end
end
end