description(command)
            click to toggle source
          
          
          
            
            
            
            
            
def description(command)
  "Emit an imports suitable for passing to the sass command-line."
end
             
            
           
          
          
         
      
        
          
          
          
            new(working_path, options)
            click to toggle source
          
          
          
            
            
            
            
            
def initialize(working_path, options)
  super
end
             
            
           
          
          
         
      
        
          
          
          
            parse!(arguments)
            click to toggle source
          
          
          
            
            
            
            
            
def parse!(arguments)
  if arguments.join("").strip.size > 0
    raise OptionParser::ParseError, "This command takes no options or arguments."
  else
    {}
  end
end
             
            
           
          
          
         
      
        
          
          
          
            usage()
            click to toggle source
          
          
          
            
            
            
            
            
def usage
  "Usage: compass imports\n\n" +
  "Prints out the imports known to compass.\n"+
  "Useful for passing imports to the sass command line:\n" +
  "  sass -r compass `compass imports` a_file_using_compass.sass"
end