Skip to content

Instantly share code, notes, and snippets.

@Sutto
Created February 2, 2009 19:18
Show Gist options
  • Save Sutto/57057 to your computer and use it in GitHub Desktop.
Save Sutto/57057 to your computer and use it in GitHub Desktop.
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the transceivers 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 transceivers plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'Transceivers'
rdoc.options << '--line-numbers' << '--inline-source'
rdoc.rdoc_files.include('README')
rdoc.rdoc_files.include('lib/**/*.rb')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment