function underscore_libraries_info in Underscore.js 7.2
Implements hook_libraries_info().
File
- ./
underscore.module, line 25 - Primary underscore module file.
Code
function underscore_libraries_info() {
$libraries['underscore'] = array(
'name' => 'Underscore.js',
'vendor url' => 'http://underscorejs.org',
'download url' => UNDERSCORE_CURRENT_VERSION_MASTER_URI,
'version arguments' => array(
'file' => 'underscore.js',
// 1.x: Underscore.js 1.4.4
'pattern' => '/Underscore.js\\s?([0-9\\.]+)/',
'lines' => 2,
'cols' => 200,
),
'files' => array(
'js' => array(
'underscore.js',
),
),
);
return $libraries;
}