public
Description: A JavaScript library for adding keyboard and mouse selection capabilities to HTML lists. Uses the Prototype framework.
Homepage: http://www.matrixview.org/
Clone URL: git://github.com/jsmecham/matrixview.git
Click here to lend your support to: matrixview and make a donation at www.pledgie.com !
matrixview / Rakefile
100644 20 lines (16 sloc) 0.389 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'rake'
require 'rake/packagetask'
 
MATRIX_VIEW_VERSION = '1.0.4-dev'
 
task :default => [ :package ]
 
Rake::PackageTask.new('matrixview', MATRIX_VIEW_VERSION) do |package|
  package.need_zip = true
  package.package_dir = 'releases'
  package.package_files.include(
    'examples/**/**',
    'javascripts/**',
    'stylesheets/**',
    'LICENSE',
    'CHANGES',
    'TODO'
  )
end