public
Description: A lightweight calendar widget for the Prototype JavaScript framework.
Homepage: http://calendarview.org/
Clone URL: git://github.com/jsmecham/calendarview.git
Click here to lend your support to: calendarview and make a donation at www.pledgie.com !
calendarview / Rakefile
100644 18 lines (14 sloc) 0.359 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'rake'
require 'rake/packagetask'
 
CALENDARVIEW_VERSION = '1.2'
 
task :default => [ :package ]
 
Rake::PackageTask.new('calendarview', CALENDARVIEW_VERSION) do |package|
  package.need_zip = true
  package.package_dir = 'releases'
  package.package_files.include(
    'javascripts/**',
    'stylesheets/**',
    'examples/**',
    'ChangeLog'
  )
end