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
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