public
Description: Rails plugin: provides a default CSS class on all INPUT fields based on the type attribute - perfect for designers.
Homepage: http://github.com/rpheath/input_css/blob/master/README.textile
Clone URL: git://github.com/rpheath/input_css.git
rpheath (author)
Wed Oct 29 06:42:29 -0700 2008
commit  ff6cb5d68aeb13db841229884e1319c7e23fee01
tree    dc3d4cfc65b1e5fed62803127ef1e5590624a013
parent  51c16c88650543b5ee936937290420eadde1ff51
input_css / Rakefile
100644 23 lines (19 sloc) 0.546 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the input_css plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the input_css plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'InputCss'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end