Mercurial > hg > soundsoftware-site
view vendor/gems/coderay-1.0.0/Rakefile @ 947:be4106d14a35 bibplugin_bibtex
Parses a pasted bibtex entry and correctly adds its fields *except* the author names/institutions. Todo: Parse the author names/institutions and show the errors (flashing on the top of the page).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Wed, 18 Jul 2012 16:57:54 +0100 |
parents | cbb26bc654de |
children |
line wrap: on
line source
$:.unshift File.dirname(__FILE__) unless $:.include? '.' ROOT = '.' LIB_ROOT = File.join ROOT, 'lib' task :default => :test if File.directory? 'rake_tasks' # load rake tasks from subfolder for task_file in Dir['rake_tasks/*.rake'].sort load task_file end else # fallback tasks when rake_tasks folder is not present (eg. in the distribution package) desc 'Run CodeRay tests (basic)' task :test do ruby './test/functional/suite.rb' ruby './test/functional/for_redcloth.rb' end gem 'rdoc' if defined? gem require 'rdoc/task' desc 'Generate documentation for CodeRay' Rake::RDocTask.new :doc do |rd| rd.title = 'CodeRay Documentation' rd.main = 'README_INDEX.rdoc' rd.rdoc_files.add Dir['lib'] rd.rdoc_files.add rd.main rd.rdoc_dir = 'doc' end end