function live_css_drush_command in Live CSS 7.2
Implements hook_drush_command().
File
- drush/
live_css.drush.inc, line 12 - Action for DruSH to take to easily set up Live CSS and download Ace for the user.
Code
function live_css_drush_command() {
$items['ace-download'] = array(
'callback' => 'live_css_drush_download',
'description' => dt('Downloads the required ACE library from http://ace.c9.io/.'),
'arguments' => array(
'path' => dt('Optional. The path to the download folder. If omitted, Drush will use the default location (<code>sites/all/libraries/ace</code>).'),
),
);
return $items;
}