Class: Compass::Commands::Base
- Inherits:
-
Object
- Object
- Compass::Commands::Base
- Includes:
- Actions
- Defined in:
- lib/compass/commands/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
-
#working_path ⇒ Object
Returns the value of attribute working_path.
Attributes included from Actions
Instance Method Summary collapse
-
#initialize(working_path, options) ⇒ Base
constructor
A new instance of Base.
- #perform ⇒ Object
Methods included from Actions
#basename, #compile, #copy, #directory, #relativize, #separate, #strip_trailing_separator, #write_file
Constructor Details
#initialize(working_path, options) ⇒ Base
Returns a new instance of Base.
9 10 11 12 |
# File 'lib/compass/commands/base.rb', line 9 def initialize(working_path, ) self.working_path = working_path self. = end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
7 8 9 |
# File 'lib/compass/commands/base.rb', line 7 def @options end |
#working_path ⇒ Object
Returns the value of attribute working_path.
7 8 9 |
# File 'lib/compass/commands/base.rb', line 7 def working_path @working_path end |
Instance Method Details
#perform ⇒ Object
14 15 16 |
# File 'lib/compass/commands/base.rb', line 14 def perform raise StandardError.new("Not Implemented") end |