public
Description: Adds a handy toolbar to any Textile-enabled text area.
Homepage: http://terralien.com/projects/textile-toolbar/
Clone URL: git://github.com/pelargir/textile_toolbar.git
Click here to lend your support to: textile_toolbar and make a donation at www.pledgie.com !
Matthew Bass (author)
Thu Apr 16 10:39:04 -0700 2009
commit  359a18afb991b4469f0c1e4580d69973c0711db8
tree    0faf20ab4a9dccd783644ea2f7256d523d599896
parent  0ed9988572cb45dbb25cf4e3119df0d012cade6e
textile_toolbar / Rakefile
100644 23 lines (19 sloc) 0.565 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 textile_toolbar plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end
 
desc 'Generate documentation for the textile_toolbar plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'textile_toolbar'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end