public
Description: Rails plugin that simplifies including javascript files in your application
Homepage: http://www.asemanfar.com/Rails-Plugin:-Javascript-Dependency-Manager
Clone URL: git://github.com/arya/js_dependency_manager.git
robolson (author)
Tue Jun 10 04:05:23 -0700 2008
commit  f2ec2c404becda54bf9e6228e14effa105031ec9
tree    a9bfd827e2a8db756eb591a1a5d4b50234319565
parent  f5dbbf894d6dac1f3f45362d6fc878a70a3c7f9e
100644 12 lines (10 sloc) 0.27 kb
1
2
3
4
5
6
7
8
9
10
11
12
require 'rake'
require 'rake/testtask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the javascript dependency manager plugin.'
Rake::TestTask.new do |test|
  test.libs << "test"
  test.test_files = Dir[ "test/*_test.rb" ]
  test.verbose = true
end