Sha256: 57765589137dcf6b897ca878c97dd12448ea53abb1550980044a9392d2b4cad7

Contents?: true

Size: 1.97 KB

Versions: 1

Compression:

Stored size: 1.97 KB

Contents

module Less
  class Command
    def initialize options
      @source, @destination = options[:source], options[:destination]
      @options = options
    end
    
    def watch?()    @options[:watch]    end
    def compress?() @options[:compress] end
    def debug?()    @options[:debug]    end
    
    # little function which allows us to 
    # Ctrl-C exit inside the passed block
    def watch &block
      begin
        block.call
      rescue Interrupt
        puts
        exit 0
      end
    end

    def run!
      if watch?
        log "Watching for changes in #@source ...Ctrl-C to abort.\n"
  
        # Main watch loop
        loop do
          watch { sleep 1 }
          
          # File has changed
          if File.stat( @source ).mtime > File.stat( @destination ).mtime
            log "Change detected... "
            
            # Loop until error is fixed
            until compile
              log "Press [enter] to continue..."
              watch { $stdin.gets }
            end
          end
        end
      else
        compile
      end
    end
    
    def compile
      begin
        # Create a new Less object with the contents of a file
        css = Less::Engine.new( File.read( @source ) ).to_css @options[:inheritance]
        css = css.delete " \n" if compress?
        
        File.open( @destination, "w" ) do |file|
          file.write css
        end
        puts " [Updated] #{@destination.split('/').last}" if watch?
      rescue Errno::ENOENT => e
        abort "#{e}"
      rescue SyntaxError
        error = debug?? $! : $!.message.split("\n")[1..-1].collect {|e| 
          e.gsub(/\(eval\)\:(\d+)\:\s/, 'line \1: ') 
        } * "\n"
        log " !! errors were found in the .less file! \n#{error}\n"
      rescue MixedUnitsError
        log "!! You're  mixing units together! what do you expect?\n"
      else
        true
      end
    end
    
    # Just a logging function to avoid typing '}'
    def log s = ''
      print '} ' + s.to_s
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
less-0.8.6 lib/less/command.rb