Class: Compass::Commands::Base
- Inherits:
-
Object
- Object
- Compass::Commands::Base
- Defined in:
- lib/compass/commands/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#working_directory ⇒ Object
Returns the value of attribute working_directory.
Instance Method Summary collapse
-
#initialize(working_directory, options) ⇒ Base
constructor
A new instance of Base.
- #perform ⇒ Object
Constructor Details
#initialize(working_directory, options) ⇒ Base
Returns a new instance of Base.
5 6 7 8 |
# File 'lib/compass/commands/base.rb', line 5 def initialize(working_directory, ) self.working_directory = working_directory self. = end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
4 5 6 |
# File 'lib/compass/commands/base.rb', line 4 def @options end |
#working_directory ⇒ Object
Returns the value of attribute working_directory.
4 5 6 |
# File 'lib/compass/commands/base.rb', line 4 def working_directory @working_directory end |
Instance Method Details
#perform ⇒ Object
10 11 12 |
# File 'lib/compass/commands/base.rb', line 10 def perform raise StandardError.new("Not Implemented") end |