Sha256: 8be4eb070c9035ba1aa20030a93cecabbebc7c833a2bfae5963b9e2aae2eac27

Contents?: true

Size: 444 Bytes

Versions: 4

Compression:

Stored size: 444 Bytes

Contents

module Compass
  module Commands
    class Base

      include Actions

      attr_accessor :working_path, :options

      def initialize(working_path, options)
        self.working_path = working_path
        self.options = options
      end
      
      def perform
        raise StandardError.new("Not Implemented")
      end

      protected

      def framework
        Compass::Frameworks[options[:framework]]
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
chriseppstein-compass-0.4.0 lib/compass/commands/base.rb
chriseppstein-compass-0.4.1 lib/compass/commands/base.rb
chriseppstein-compass-0.4.2 lib/compass/commands/base.rb
jsmestad-compass-0.4.2.1 lib/compass/commands/base.rb