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 (author)
Sat Aug 22 06:16:47 -0700 2009
commit  d3fd0930a1909a6e6dde2f8e39192d75954ac880
tree    794e5543b0474bfc508c5daf48a9d699bd43161c
parent  359a18afb991b4469f0c1e4580d69973c0711db8
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