Sha256: 47a5cf75c02ecde5409c760bf45b959b557809d4863277bb658cc9b78d23de13

Contents?: true

Size: 486 Bytes

Versions: 1

Compression:

Stored size: 486 Bytes

Contents

module Compass
  module Commands
    class ListFrameworks < ProjectBase
      attr_accessor :options
      register :frameworks
      def initialize(working_path, options)
        super
      end
  
      def execute
        Compass::Frameworks::ALL.each do |framework|
          puts framework.name unless framework.name =~ /^_/
        end
      end
      class << self
        def description(command)
          "List the available frameworks"
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
compass-0.10.1 lib/compass/commands/list_frameworks.rb