Class: Compass::Commands::ListFrameworks
- Inherits:
-
Object
- Object
- Compass::Commands::ListFrameworks
- Defined in:
- lib/compass/commands/list_frameworks.rb
Instance Attribute Summary collapse
-
#options ⇒ Object
Returns the value of attribute options.
Instance Method Summary collapse
-
#initialize(working_path, options) ⇒ ListFrameworks
constructor
A new instance of ListFrameworks.
- #perform ⇒ Object
Constructor Details
#initialize(working_path, options) ⇒ ListFrameworks
Returns a new instance of ListFrameworks.
5 6 7 |
# File 'lib/compass/commands/list_frameworks.rb', line 5 def initialize(working_path, ) self. = end |
Instance Attribute Details
#options ⇒ Object
Returns the value of attribute options.
4 5 6 |
# File 'lib/compass/commands/list_frameworks.rb', line 4 def @options end |
Instance Method Details
#perform ⇒ Object
9 10 11 12 13 |
# File 'lib/compass/commands/list_frameworks.rb', line 9 def perform Compass::Frameworks::ALL.each do |framework| puts framework.name end end |