public
Description: Rails plugin to allow commas for numeric fields in ActiveRecord models
Homepage:
Clone URL: git://github.com/dramsay/comma_parser.git
comma_parser / Rakefile
100644 13 lines (11 sloc) 0.264 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the comma_parser plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end