mleung / ie_no_more

Rails plugin to detect ie6 and display a message asking to upgrade.

This URL has Read+Write access

mleung (author)
Sat May 30 21:36:18 -0700 2009
commit  0909196d458a21b1b141b90d3b5e985ed9ce885f
tree    6dedfe8e25c3fcf346d6a9f4d401cde591093261
parent  a345313a2d6686742f4c6f8abcb3d81a79abaabb
ie_no_more / Rakefile
100644 24 lines (20 sloc) 0.567 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Test the ie_no_more plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the ie_no_more plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'IeNoMore'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end